Hi , I found a solution how to deal with avi files which have been captured from a dvb-t stream
1) capture: mencoder dvb://CHAN1 -o dbtfile.avi -oac copy -ovc copy 2) (The resulting dbtfile.avi cannot be worked with avidemux). Thats why we have to demux end mux it: tcextract -i dbtfile.avi -x dv > f_tmp.m2v tcextract -i dbtfile.avi -x mp3 > f_tmp.m2a mplex -f 0 -b 500 -o final.avi f_tmp.m2v f_tmp.m2a 3) Now you can take final.avi and process it in avidemux. greetings Hans-Peter