Changed VLC audio extraction parameters so it works better with SE

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@2204 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2013-11-18 09:39:59 +00:00
parent a2cb5c362a
commit 25fc0c4250
2 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@
* Add to "Names/noise list" in spell checknow used word in textbox
(and not the original word)
* Alignment now works when exporting to sub/idx - thx adrianbergonzi
* Changed VLC audio extraction parameters so it works better with SE
3.3.9 (19th October 2013)

View File

@ -55,7 +55,7 @@ namespace Nikse.SubtitleEdit.Forms
string targetFile = Path.GetTempFileName() + ".wav";
// string parameters = "-I dummy -vvv \"" + SourceVideoFileName + "\" --sout=#transcode{vcodec=none,acodec=s16l}:file{dst=\"" + targetFile + "\"} vlc://quit";
// string parameters = "-I dummy -vvv --no-sout-video --audio-track=" + _audioTrackNumber.ToString() + " --sout #transcode{" + _encodeParamters + "}:std{mux=wav,access=file,dst=\"" + targetFile + "\"} \"" + SourceVideoFileName + "\" vlc://quit";
string parameters = "\"" + SourceVideoFileName + "\" -I dummy -vvv --no-sout-video --sout=\"#transcode{acodec=s16l,channels=1,ab=64,samplerate=8000}:std{access=file,mux=wav,dst=" + targetFile + "}\" vlc://quit";
string parameters = "\"" + SourceVideoFileName + "\" -I dummy -vvv --no-sout-video --audio-track=" + _audioTrackNumber.ToString() + " --sout=\"#transcode{acodec=s16l,channels=1,ab=64,samplerate=8000}:std{access=file,mux=wav,dst=" + targetFile + "}\" vlc://quit";