Hi Is it possible to encode an interlaced source as an interlaced mpeg2 using the ffmpeg export module?
I tried a PAL VCD video segment with the following but it just can't end properly. I have to 'kill -1' it: ---------------------------------- $ transcode -i "$mfilm" -M 2 -y ffmpeg -N 0x2000 -E 48000 -b 128 -o dvd-"$mfilm" -F mpeg2video -I 2 --encode_fields t -c 00:1:0-00:8:0 [export_ffmpeg.so] Using FFMPEG codec 'mpeg2video' (FourCC 'mpg2', MPEG2 compliant video). [export_ffmpeg.so] No profile selected [export_ffmpeg.so] warning: Error opening configuration file ./ffmpeg.cfg: No such file or directory [export_ffmpeg.so] Starting 1 thread(s) [export_ffmpeg.so] Set display aspect ratio to input [mpeg2video @ 0xb6901650]removing common factors from framerate [transcode] PCM -> AC3 [extract_mpeg2.c] warning: missing start code at 0x900 [extract_mpeg2.c] warning: incorrect zero-byte padding detected - ignored [decode_mpeg2.c] libmpeg2 0.4.0b loop decoder [decode_mpeg2.c] libmpeg2 acceleration: 3dnow encoding frame [11999/12000], 87.77 fps, 100.0%, ETA: 0:00:00, ( 0| 0| 4) [transcode] (sighandler) SIGINT received ^C [transcode] (sighandler) SIGINT received [transcode] (sighandler) SIGINT received [transcode] (sighandler) SIGINT received Hangup ---------------------------------- Moreover, the trancoded result is not recognizable by tcprobe: ---------------------------------- $ tcprobe -i dvd-"$mfilm" [tcprobe] RIFF data, AVI video AVI open: avilib - AVI file has no video data [tcprobe] summary for dvd-test.mpg, (*) = not default, 0 = not detected no audio track: use "null" import module for audio ---------------------------------- Any comments? thanks tong