I have an MPEG-TS movie (MPEG2, AC3) and am trying to convert it to H264/AC3 (to save space). I tried to convert it to H264 the following way:
"vlc" -vvv "movie.ts" :sout="#transcode{vcodec=h264,vb=4000,scale=1}:standard{access=file,url=test.mp4}" vlc:quit
with limited success since there is no audio in the resulting stream. Additionnally, in VLC, when I open the stream with VLC the flux info shows me two streams with codec avc1... Dunno why.
Anyways, how can one transcode the video part of a movie but just mux the audio without encoding it? Or alternatively, how can one mux a mp4 file w/ h264 with an external ac3 file?
Thanks in advance!