Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-07-01 Thread Dani A
If I always use the below command to convert .mov files to mp4, will it always work? I am only changing the audio codec and keeping the video codec the same. ffmpeg -i MVI_0797.MOV  -c:v copy  -c:a mp3 -movflags faststart MVI_0797-fast.MP4 Are always .Mov files has h264 video codec, and the

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-07-01 Thread Henk D. Schoneveld
On 01 Jul 2015, at 23:58, Dani A danix4u-at-yahoo@ffmpeg.org wrote: If I always use the below command to convert .mov files to mp4, will it always work? I am only changing the audio codec and keeping the video codec the same. ffmpeg -i MVI_0797.MOV -c:v copy -c:a mp3 -movflags

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-27 Thread Dani A
I tried to convert a .mov file to mp4 using the above command and I recieved the below errors. what is wrong? [root@test video]# ffmpeg -i MVI_0797.MOV  -c:v copy  -c:a copy  -movflags faststart MVI_0797-fast.MP4 ffmpeg version 2.6.2-   http://johnvansickle.com/ffmpeg/    Copyright (c)

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-27 Thread Henk D. Schoneveld
On 27 Jun 2015, at 08:30, Dani A danix4u-at-yahoo@ffmpeg.org wrote: I tried to convert a .mov file to mp4 using the above command and I recieved the below errors. what is wrong? Read and try to understand what the error is telling you. Go back in the mail and read what I tried telling you

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-27 Thread Robert Krüger
On Sat, Jun 27, 2015 at 8:30 AM, Dani A danix4u-at-yahoo@ffmpeg.org wrote: I tried to convert a .mov file to mp4 using the above command and I recieved the below errors. what is wrong? [root@test video]# ffmpeg -i MVI_0797.MOV -c:v copy -c:a copy -movflags faststart MVI_0797-fast.MP4

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-24 Thread Henk D. Schoneveld
On 24 Jun 2015, at 20:49, Dani A danix4u-at-yahoo@ffmpeg.org wrote: Than you Henk, the other suggestions were great. so if when we copy mthe codec,what does FFMEPG do? just rename the file from .mov to mp4? More or less. A file you can play consist of a container, mp4 mov ts flv avi

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-24 Thread Henk D. Schoneveld
On 25 Jun 2015, at 01:59, Dani A danix4u-at-yahoo@ffmpeg.org wrote: so the command to convert .mov tp mp4 with least CPU utilization is ffmpeg -i input.MOV -c:v copy -a:a copy -profile:v main -crf 23 -movflags faststart output.MP4 I cannot specify scale or or setdar, correct? I

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-24 Thread Dani A
so the command to convert .mov tp mp4 with least CPU utilization is ffmpeg -i input.MOV  -c:v copy  -a:a copy -profile:v main  -crf 23 -movflags faststart output.MP4 I cannot specify scale or or setdar, correct? On Wednesday, June 24, 2015 5:40 PM, Henk D. Schoneveld

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-24 Thread Henk D. Schoneveld
On 24 Jun 2015, at 01:28, Dani A danix4u-at-yahoo@ffmpeg.org wrote: Any one knows? What is the minimum encoding I can do on .mov files to make them mp4. I want to offload the cpu from too much processing in converting mov files to mp4. You don’t say anything about what you tried and

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-24 Thread Dani A
Than you Henk, the other suggestions  were great. so if when we copy mthe codec,what does FFMEPG do? just rename the file from .mov to mp4? On Wednesday, June 24, 2015 2:25 PM, Henk D. Schoneveld belca...@zonnet.nl wrote: On 21 Jun 2015, at 21:59, Dani A

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-21 Thread Dani A
Is there any way faster I can convert iphone .mov to mp4. for example, copying the same codec instead of using the libx264 so it will be faster and will not consume so much resouces? On Tuesday, June 16, 2015 7:42 AM, Henk D. Schoneveld belca...@zonnet.nl wrote: On 16 Jun 2015,

Re: [FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-16 Thread Henk D. Schoneveld
On 16 Jun 2015, at 05:13, Dani A danix4u-at-yahoo@ffmpeg.org wrote: I am using the below command to covert the .mov files to play html5, but it takes so much time..Is there another way to convert those files so they can play on html5 players but fast to convert... ffmpeg -i input.MOV

[FFmpeg-user] Converting .mov files playable on html5 players..but very slow

2015-06-15 Thread Dani A
I am using the below command to covert the .mov files to play html5, but it takes so much time..Is there another way to convert those files so they can play on html5 players but fast to convert... ffmpeg -i input.MOV -vf scale=720x406,setdar=16:9 -c:v libx264 -profile:v main -crf 20 -movflags