Sirber
4th January 2011, 14:30
"C:\Users\Sirber\Documents\My Dropbox\prog\bencos\out\ffmpeg.exe" -ac 2 -vn -y -i "C:\Users\Sirber\Documents\My Dropbox\share\cindy\101028_famille02.mov" -f wav - | "C:\Users\Sirber\Documents\My Dropbox\prog\bencos\out\neroAacEnc.exe" -ignorelength -hev2 -br 32000 -if - -of "C:\Users\Sirber\AppData\Local\Temp/bencos/audio.mp4"
FFmpeg version SVN-r26188, Copyright (c) 2000-2011 the FFmpeg developers
built on Jan 2 2011 04:10:51 with gcc 4.4.2
configuration: --enable-gpl --enable-version3 --enable-libgsm --enable-libvorbis --enable-libtheora --enable-libspeex --enable-libmp3lame --enable-libopenjpeg --enable-libschroedinger --enable-libopencore_amrwb --enable-libopencore_amrnb --enable-libvpx --disable-decoder=libvpx --arch=x86 --enable-runtime-cpudetect --enable-libxvid --enable-libx264 --enable-librtmp --extra-libs='-lrtmp -lpolarssl -lws2_32 -lwinmm' --target-os=mingw32 --enable-avisynth --enable-w32threads --cross-prefix=i686-mingw32- --cc='ccache i686-mingw32-gcc' --enable-memalign-hack
libavutil 50.36. 0 / 50.36. 0
libavcore 0.16. 0 / 0.16. 0
libavcodec 52.101. 0 / 52.101. 0
libavformat 52.91. 0 / 52.91. 0
libavdevice 52. 2. 2 / 52. 2. 2
libavfilter 1.72. 0 / 1.72. 0
libswscale 0.12. 0 / 0.12. 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 018b90b0] max_analyze_duration reached
Seems stream 0 codec frame rate differs from container frame rate: 5994.00 (5994/1) -> 29.97 (2997/100)
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'C:\Users\Sirber\Documents\My Dropbox\share\cindy\101028_famille02.mov':
Metadata:
major_brand : qt
minor_version : 537199360
compatible_brands: qt
creation_time : 2010-10-28 19:52:27
Duration: 00:07:54.98, start: 0.000000, bitrate: 1132 kb/s
Stream #0.0(eng): Video: h264, yuv420p, 720x404 [PAR 1:1 DAR 180:101], 1023 kb/s, 29.97 fps, 29.97 tbr, 2997 tbn, 5994 tbc
Metadata:
creation_time : 2010-10-28 19:52:27
Stream #0.1(eng): Audio: aac, 44100 Hz, stereo, s16, 103 kb/s
Metadata:
creation_time : 2010-10-28 19:52:27
Stream #0.2(eng): Data: tmcd / 0x64636D74
Metadata:
creation_time : 2010-10-28 19:52:27
Unable to find a suitable output format for '|'
When I run the cmdline in "cmd.exe" it works, but when I start it with TProcess it doesn't.
My TProcess:
oCli.CommandLine := sCmd;
oCli.Priority := ppIdle;
oCli.CurrentDirectory := sTemp;
oCli.Options := [poUsePipes, poStderrToOutPut];
{$IFDEF WIN32}oCli.Options := oCli.Options + [poNoConsole];{$ENDIF}
//oCli.ShowWindow := swoHide;
oCli.Execute();
FFmpeg version SVN-r26188, Copyright (c) 2000-2011 the FFmpeg developers
built on Jan 2 2011 04:10:51 with gcc 4.4.2
configuration: --enable-gpl --enable-version3 --enable-libgsm --enable-libvorbis --enable-libtheora --enable-libspeex --enable-libmp3lame --enable-libopenjpeg --enable-libschroedinger --enable-libopencore_amrwb --enable-libopencore_amrnb --enable-libvpx --disable-decoder=libvpx --arch=x86 --enable-runtime-cpudetect --enable-libxvid --enable-libx264 --enable-librtmp --extra-libs='-lrtmp -lpolarssl -lws2_32 -lwinmm' --target-os=mingw32 --enable-avisynth --enable-w32threads --cross-prefix=i686-mingw32- --cc='ccache i686-mingw32-gcc' --enable-memalign-hack
libavutil 50.36. 0 / 50.36. 0
libavcore 0.16. 0 / 0.16. 0
libavcodec 52.101. 0 / 52.101. 0
libavformat 52.91. 0 / 52.91. 0
libavdevice 52. 2. 2 / 52. 2. 2
libavfilter 1.72. 0 / 1.72. 0
libswscale 0.12. 0 / 0.12. 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 018b90b0] max_analyze_duration reached
Seems stream 0 codec frame rate differs from container frame rate: 5994.00 (5994/1) -> 29.97 (2997/100)
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'C:\Users\Sirber\Documents\My Dropbox\share\cindy\101028_famille02.mov':
Metadata:
major_brand : qt
minor_version : 537199360
compatible_brands: qt
creation_time : 2010-10-28 19:52:27
Duration: 00:07:54.98, start: 0.000000, bitrate: 1132 kb/s
Stream #0.0(eng): Video: h264, yuv420p, 720x404 [PAR 1:1 DAR 180:101], 1023 kb/s, 29.97 fps, 29.97 tbr, 2997 tbn, 5994 tbc
Metadata:
creation_time : 2010-10-28 19:52:27
Stream #0.1(eng): Audio: aac, 44100 Hz, stereo, s16, 103 kb/s
Metadata:
creation_time : 2010-10-28 19:52:27
Stream #0.2(eng): Data: tmcd / 0x64636D74
Metadata:
creation_time : 2010-10-28 19:52:27
Unable to find a suitable output format for '|'
When I run the cmdline in "cmd.exe" it works, but when I start it with TProcess it doesn't.
My TProcess:
oCli.CommandLine := sCmd;
oCli.Priority := ppIdle;
oCli.CurrentDirectory := sTemp;
oCli.Options := [poUsePipes, poStderrToOutPut];
{$IFDEF WIN32}oCli.Options := oCli.Options + [poNoConsole];{$ENDIF}
//oCli.ShowWindow := swoHide;
oCli.Execute();