Re: [FFmpeg-user] How to embed subtitles to .mp4 movie using ffmpeg

2015-05-08 Thread Henk D. Schoneveld
On 08 May 2015, at 14:08, Moritz Barsnick barsn...@gmx.net wrote: On Fri, May 08, 2015 at 13:24:07 +0200, Henk D. Schoneveld wrote: On 06 May 2015, at 22:20, yogev ch yoge...@gmail.com wrote: *ffmpeg -i in.mp4 -f srt -i subs.srt -c:v copy -c:a copy -c:s mov_text out.mp4* I saw here

Re: [FFmpeg-user] .264 to .avi

2015-05-08 Thread Dave P
On May 8, 2015 12:49 PM, Fatimah Alaliyani fatimah1...@gmail.com wrote: I used the code to convert 6 files at once to uncompressed .avi forfiles /p 264s /m *.264 /c cmd /c ffmpeg -f h264 -i @file -vf scale=704*480 -y input_double_high.avi it is working great, but re-saves the file with the

Re: [FFmpeg-user] .264 to .avi

2015-05-08 Thread Lou
On Thu, May 7, 2015, at 11:56 PM, Fatimah Alaliyani wrote: I used the code to convert 6 files at once to uncompressed .avi forfiles /p 264s /m *.264 /c cmd /c ffmpeg -f h264 -i @file -vf scale=704*480 -y input_double_high.avi it is working great, but re-saves the file with the same name on

[FFmpeg-user] .264 to .avi

2015-05-08 Thread Fatimah Alaliyani
I used the code to convert 6 files at once to uncompressed .avi forfiles /p 264s /m *.264 /c cmd /c ffmpeg -f h264 -i @file -vf scale=704*480 -y input_double_high.avi it is working great, but re-saves the file with the same name on the previous file. I would like it to create a new files with

Re: [FFmpeg-user] Extracting multiple audio stream into one file

2015-05-08 Thread loeffler
That would have been too obvious, if I had just looked closely enough. -map 0:a or -dn are obvious fixes for that. Brilliant, that solved it: ffmpeg -i '/storage/orig_qt/SUB_01_INGEST.mov' -map 0:a -acodec: copy -vn '/storage/orig_qt/SUB_01_INGEST.mkv' I ended up using .mkv because .wav

Re: [FFmpeg-user] How to embed subtitles to .mp4 movie using ffmpeg

2015-05-08 Thread Moritz Barsnick
On Fri, May 08, 2015 at 13:24:07 +0200, Henk D. Schoneveld wrote: On 06 May 2015, at 22:20, yogev ch yoge...@gmail.com wrote: *ffmpeg -i in.mp4 -f srt -i subs.srt -c:v copy -c:a copy -c:s mov_text out.mp4* I saw here ffmpeg -i vid.mp4 -i vid.srt -c:v copy -c:a copy -c:s mov_text

Re: [FFmpeg-user] How to embed subtitles to .mp4 movie using ffmpeg

2015-05-08 Thread Henk D. Schoneveld
On 06 May 2015, at 22:20, yogev ch yoge...@gmail.com wrote: I'm trying to embed subtitles I wrote to a movie I created. I'm using *ffmpeg* version: *ffmpeg-20150418-git-edbb9b5-win64-static* with the command: *ffmpeg -i in.mp4 -f srt -i subs.srt -c:v copy -c:a copy -c:s mov_text out.mp4*