rename to FFmpegService

This commit is contained in:
zeromus 2020-07-24 18:22:36 -04:00
parent dd01c26c92
commit b24a4ecc09
6 changed files with 17 additions and 13 deletions

View File

@ -2,6 +2,8 @@
using System.IO;
using BizHawk.Emulation.DiscSystem;
using BizHawk.Common;
namespace BizHawk.Client.DiscoHawk
{
public static class AudioExtractor
@ -45,7 +47,7 @@ namespace BizHawk.Client.DiscoHawk
try
{
File.WriteAllBytes(tempfile, waveData);
var ffmpeg = new FFMpeg();
var ffmpeg = new FFmpegService();
ffmpeg.Run("-f", "s16le", "-ar", "44100", "-ac", "2", "-i", tempfile, "-f", "mp3", "-ab", "192k", mp3Path);
}
finally

View File

@ -78,7 +78,8 @@ namespace BizHawk.Client.DiscoHawk
var ffmpegPath = Path.Combine(GetExeDirectoryAbsolute(), "ffmpeg.exe");
if (!File.Exists(ffmpegPath))
ffmpegPath = Path.Combine(Path.Combine(GetExeDirectoryAbsolute(), "dll"), "ffmpeg.exe");
FFMpeg.FFMpegPath = ffmpegPath;
//TODO FFMPEG
//FFMpeg.FFMpegPath = ffmpegPath;
AudioExtractor.FFmpegPath = ffmpegPath;
new DiscoHawk().Run(args);
}

View File

@ -8,7 +8,7 @@ using System.IO;
namespace BizHawk.Common
{
public class FFMpeg
public class FFmpegService
{
public static string FFMpegPath;

View File

@ -1,11 +1,8 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.IO;
using BizHawk.Common;
namespace BizHawk.Emulation.DiscSystem
{
internal class AudioDecoder
@ -25,7 +22,7 @@ namespace BizHawk.Emulation.DiscSystem
private bool CheckForAudio(string path)
{
FFMpeg ffmpeg = new FFMpeg();
FFmpegService ffmpeg = new FFmpegService();
var qa = ffmpeg.QueryAudio(path);
return qa.IsAudio;
}
@ -62,7 +59,7 @@ namespace BizHawk.Emulation.DiscSystem
}
/// <exception cref="AudioDecoder_Exception">could not find source audio for <paramref name="audioPath"/></exception>
public byte[] AcquireWaveData(string audioPath) => new FFMpeg()
public byte[] AcquireWaveData(string audioPath) => new FFmpegService()
.DecodeAudio(FindAudio(audioPath) ?? throw new AudioDecoder_Exception($"Could not find source audio for: {Path.GetFileName(audioPath)}"));
}
}

View File

@ -2,6 +2,8 @@ using System;
using System.IO;
using System.Collections.Generic;
using BizHawk.Common;
//this would be a good place for structural validation
//after this step, we won't want to have to do stuff like that (it will gunk up already sticky code)
@ -327,7 +329,7 @@ namespace BizHawk.Emulation.DiscSystem.CUE
//check whether processing was available
if (needsCodec)
{
FFMpeg ffmpeg = new FFMpeg();
FFmpegService ffmpeg = new FFmpegService();
if (!ffmpeg.QueryServiceAvailable())
Warn("Decoding service will be required for further processing, but is not available");
}

View File

@ -21,6 +21,8 @@ using System;
using System.IO;
using System.Collections.Generic;
using BizHawk.Common;
namespace BizHawk.Emulation.DiscSystem.CUE
{
/// <summary>
@ -102,10 +104,10 @@ namespace BizHawk.Emulation.DiscSystem.CUE
}
case CompiledCueFileType.DecodeAudio:
{
FFMpeg ffmpeg = new FFMpeg();
FFmpegService ffmpeg = new FFmpegService();
if (!ffmpeg.QueryServiceAvailable())
{
throw new DiscReferenceException(ccf.FullPath, "No decoding service was available (make sure ffmpeg.exe is available. even though this may be a wav, ffmpeg is used to load oddly formatted wave files. If you object to this, please send us a note and we'll see what we can do. It shouldn't be too hard.)");
throw new DiscReferenceException(ccf.FullPath, "No decoding service was available (make sure ffmpeg.exe is available. Even though this may be a wav, ffmpeg is used to load oddly formatted wave files. If you object to this, please send us a note and we'll see what we can do. It shouldn't be too hard.)");
}
AudioDecoder dec = new AudioDecoder();
byte[] buf = dec.AcquireWaveData(ccf.FullPath);