FFmpeg : http://ffmpeg.mplayerhq.hu/
Unofficial FFmpeg Win32 Builds :  http://arrozcru.no-ip.org/ffmpeg_builds/


flv 변환예제
ffmpeg.exe  -y -i input.wmv -ar 22050 -qmax 10 output.flv

-ar rate            set audio sampling rate (in Hz)
-qmax              <int>   E.V.. max video quantizer scale (VBR)


이미지 추출 예제
ffmpeg.exe -y -i "%1" -ss 0:0:10.0 -vframes 1 -vcodec png -y -f image2 "%1.png"

-ss time_off        set the start time offset
-vframes number     set the number of video frames to record
-vcodec codec       force video codec ('copy' to copy stream)


'Dev > Windows' 카테고리의 다른 글

유니코드(UNICODE), C++  (0) 2008.10.16
VARIANT 에서 객체 추출하기  (0) 2008.09.09
벤치마킹  (0) 2007.10.17
달라진 기능 (IIS 6.0)  (0) 2007.09.28
SQLOLEDB Provider 의 특이한 동작  (0) 2007.09.20

+ Recent posts