[FFmpeg-user] timelapse framerates

2015-12-29 Thread Michael Koch
Hi all, I have a few questions about making timelapse videos from many pictures. The following command makes a video with framerate 25 and works as expected: ffmpeg -framerate 25 -start_number 123 -i IMG_%4d.jpg -codec:v mpeg4 output.mp4 My questions: 1. Is it possible to make a video with di

Re: [FFmpeg-user] timelapse framerates

2015-12-29 Thread Carl Eugen Hoyos
Michael Koch t-online.de> writes: > ffmpeg -framerate 25 -start_number 123 -i IMG_%4d.jpg > -codec:v mpeg4 output.mp4 Please understand that you are expected to always post your command line including the complete, uncut console output on this mailing list. > 1. Is it possible to make a vide

Re: [FFmpeg-user] Issue of using ffmpeg: "Invalid TIFF header" +"Could not find codec parameters for stream 0 (Video: tiff, none):"

2015-12-29 Thread Carl Eugen Hoyos
Xiaoming Hu gmail.com> writes: > BTW, I used it on MacBook and the .tiff image > could display. Please provide the sample, either use http://www.datafilehost.com/ (500M limit) or our ftp server (no limit), see: https://ffmpeg.org/bugreports.html Carl Eugen __

Re: [FFmpeg-user] FFMPEG Overlay image on video results large size videos

2015-12-29 Thread Moritz Barsnick
On Mon, Dec 28, 2015 at 10:37:25 +0530, Rajasekhar Reddy wrote: > Also i am getting the apk size 28.9 MB, How to reduce the apk size. If you use examples, you also need to understand them (or understand what the original author was trying to do). > *COMMAND:* > > ffmpeg -i /storage/emulated/0/vi

Re: [FFmpeg-user] generating a poster uses all my ram

2015-12-29 Thread Carl Eugen Hoyos
chovy protonmail.ch> writes: > I was doing a stream copy which works fine, very > little resources are used. But as soon as I add > the flags to generate a poster, all my RAM is > maxed out. Is it possible that you provided a script that does not allow to reproduce the issue instead of the

Re: [FFmpeg-user] Add IFrames to H264 video file

2015-12-29 Thread Carl Eugen Hoyos
Oren Winkler nice.com> writes: > It seems like the raw data file is corrupted, or > some information is missing, although we can play > it in Elecard StreamEye Tools. Please provide your input file. Carl Eugen ___ ffmpeg-user mailing list ffmpeg-us

Re: [FFmpeg-user] timelapse framerates

2015-12-29 Thread Michael Koch
ffmpeg -framerate 25 -start_number 1 -i IMG_%4d.jpg -codec:v mpeg4 output.mp4 Please understand that you are expected to always post your command line including the complete, uncut console output on this mailing list. The above command line does exactly what it's supposed to do. Let's assume I

[FFmpeg-user] how to make ffmpeg automatically choose the apt bitrate for transcoding favoring quality over size

2015-12-29 Thread Ramprasad N
Hi, I have a video in x264 format and need to convert to xvid for playback in dvd player via USB. I dont care much about the output filesize, it is ok if the size increases, i want to preserve as much quality as possible. basically i dont want to manually set any overall bitrate. Is it possible to

Re: [FFmpeg-user] how to make ffmpeg automatically choose the apt bitrate for transcoding favoring quality over size

2015-12-29 Thread Carl Eugen Hoyos
Ramprasad N gmail.com> writes: > i want to preserve as much quality as possible. Then use -qscale 2 Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user

Re: [FFmpeg-user] how to make ffmpeg automatically choose the apt bitrate for transcoding favoring quality over size

2015-12-29 Thread Ramprasad N
Cool Thanks :-) On Tue, Dec 29, 2015 at 11:01 PM, Carl Eugen Hoyos wrote: > Ramprasad N gmail.com> writes: > > > i want to preserve as much quality as possible. > > Then use -qscale 2 > > Carl Eugen > > ___ > ffmpeg-user mailing list > ffmpeg-user@ffm

[FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread jd1008
Command: ffmpeg \ -i Discourse_1_Part_1.mp4 \ -i Discourse_1_Part_2.mp4 \ -i Discourse_2_Part_1.mp4 \ -i Discourse_2_Part_2.mp4 \ -i Discourse_3_Part_1.mp4 \ -i Discourse_3_Part_2.mp4 \ -strict -2 -y All_Discourses.mp4 Yielded a result much smaller than expected (in size) and when played, does n

Re: [FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread Reindl Harald
Am 29.12.2015 um 20:44 schrieb jd1008: Command: ffmpeg \ -i Discourse_1_Part_1.mp4 \ -i Discourse_1_Part_2.mp4 \ -i Discourse_2_Part_1.mp4 \ -i Discourse_2_Part_2.mp4 \ -i Discourse_3_Part_1.mp4 \ -i Discourse_3_Part_2.mp4 \ -strict -2 -y All_Discourses.mp4 Yielded a result much smaller than

Re: [FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread Lou
On Tue, 29 Dec 2015 12:44:48 -0700 jd1008 wrote: > Command: > > ffmpeg \ > -i Discourse_1_Part_1.mp4 \ > -i Discourse_1_Part_2.mp4 \ > -i Discourse_2_Part_1.mp4 \ > -i Discourse_2_Part_2.mp4 \ > -i Discourse_3_Part_1.mp4 \ > -i Discourse_3_Part_2.mp4 \ > -strict -2 -y All_Discourses.mp4 Complet

Re: [FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread Brice
I think you're probably looking for concatenation Something like this: ffmpeg -i "concat:input1.mpg|input2.mpg|input3.mpg" -c copy output.mpg On Tue, Dec 29, 2015 at 11:44 AM, jd1008 wrote: > Command: > > ffmpeg \ > -i Discourse_1_Part_1.mp4 \ > -i Discourse_1_Part_2.mp4 \ > -i Discourse_2_P

Re: [FFmpeg-user] timelapse framerates

2015-12-29 Thread Michael Koch
ffmpeg -framerate 25 -start_number 1 -i IMG_%4d.jpg -codec:v mpeg4 output.mp4 Please understand that you are expected to always post your command line including the complete, uncut console output on this mailing list. The above command line does exactly what it's supposed to do. Let's assume

Re: [FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread jd1008
On 12/29/2015 12:49 PM, Lou wrote: On Tue, 29 Dec 2015 12:44:48 -0700 jd1008 wrote: Command: ffmpeg \ -i Discourse_1_Part_1.mp4 \ -i Discourse_1_Part_2.mp4 \ -i Discourse_2_Part_1.mp4 \ -i Discourse_2_Part_2.mp4 \ -i Discourse_3_Part_1.mp4 \ -i Discourse_3_Part_2.mp4 \ -strict -2 -y All_Dis

Re: [FFmpeg-user] generating a poster uses all my ram

2015-12-29 Thread chovy
Here's a working command to generate a poster ffmpeg -y -i "http://nasatv-lh.akamaihd.net/i/NASA_101@319270/index_700_av-p.m3u8"; -vf fps=1/60 -update 1 "./poster.png" -hls_time 10 -hls_list_size 10 -hls_wrap 10 -hls_flags delete_segments -hls_segment_filename "./video%03d.ts" -c:v copy -c:a c

Re: [FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread Moritz Barsnick
On Tue, Dec 29, 2015 at 20:47:42 +0100, Reindl Harald wrote: > > Yielded a result much smaller than expected (in size) and > > when played, does not contain the contents of all the parts. > > that can not work by defintion > https://trac.ffmpeg.org/wiki/Concatenate It probably depends on the defi

Re: [FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread Moritz Barsnick
On Tue, Dec 29, 2015 at 14:31:38 -0700, jd1008 wrote: > I concocted this script and it worked perfectly; albeit, I would > have liked the output to be in HD (1920x1080). > However, every time I tried to set the size to 1920x1080, it > took forever to transcode a small video file, so I abandoned > t

Re: [FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread Carl Eugen Hoyos
Moritz Barsnick gmx.net> writes: > That will take more amount of time. Not > *forever* though There could be a framerate change involved but we can't know for sure without console output... Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpe

Re: [FFmpeg-user] generating a poster uses all my ram

2015-12-29 Thread Carl Eugen Hoyos
chovy protonmail.com> writes: > Here's a working command to generate a poster Please provide the command line together with the complete, uncut console output here on the mailing list, do not use external resources (except for sample files). Please do not top-post here, Carl Eugen _

Re: [FFmpeg-user] generating a poster uses all my ram

2015-12-29 Thread chovy
Original Message Subject: Re: [FFmpeg-user] generating a poster uses all my ram Local Time: December 29 2015 2:42 pm UTC Time: December 29 2015 10:42 pm From: ceho...@ag.or.at To: ffmpeg-user@ffmpeg.org chovy protonmail.com> writes: > Here's a working command to generate a post

[FFmpeg-user] ProRes change framerate

2015-12-29 Thread Fabrice Saudoyez
Hi I would like to copy a ProRes file to another proves file changing the framerate. But in changing the frame rate I don’t want to interpolate the frames. I’alike to take the number of frame of the source and have the exact frames amount in the destination files but changing the frame rate. Like

[FFmpeg-user] null video sink

2015-12-29 Thread Roger Pack
Hello. I noticed the docs for the "null" video filter say: https://ffmpeg.org/ffmpeg-filters.html#nullsink Null video sink: do absolutely nothing with the input video. It is mainly useful as a template and for use in analysis / debugging tools. Could anyone be kind enough to show me how to use thi

Re: [FFmpeg-user] null video sink

2015-12-29 Thread Carl Eugen Hoyos
Roger Pack gmail.com> writes: > I noticed the docs for the "null" video filter say: > https://ffmpeg.org/ffmpeg-filters.html#nullsink > Null video sink: do absolutely nothing with the input video. It is > mainly useful as a template and for use in analysis / debugging tools. > > Could anyone be

Re: [FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread jd1008
I will re-issue the command and provide the full output. Right now, too much is running and chocking disk io. On 12/29/2015 03:44 PM, Carl Eugen Hoyos wrote: Moritz Barsnick gmx.net> writes: That will take more amount of time. Not *forever* though There could be a framerate change involved

Re: [FFmpeg-user] ProRes change framerate

2015-12-29 Thread Carl Eugen Hoyos
Fabrice Saudoyez staytuned.be> writes: > I would like to copy a ProRes file to another proves file > changing the framerate. > But in changing the frame rate I don’t want to > interpolate the frames. Do you want to change playback speed? This is possible with the setpts filter but needs reenc

Re: [FFmpeg-user] ProRes change framerate

2015-12-29 Thread Fabrice Saudoyez
Any possibility without re-encoding ? Just copy the frames ? On 30/12/15 00:04, "ffmpeg-user on behalf of Carl Eugen Hoyos" wrote: >Fabrice Saudoyez staytuned.be> writes: > >> I would like to copy a ProRes file to another proves file >> changing the framerate. >> But in changing the frame

Re: [FFmpeg-user] Joining mp4 files did not yield the expected file

2015-12-29 Thread jd1008
On 12/29/2015 03:40 PM, Moritz Barsnick wrote: On Tue, Dec 29, 2015 at 14:31:38 -0700, jd1008 wrote: I concocted this script and it worked perfectly; albeit, I would have liked the output to be in HD (1920x1080). However, every time I tried to set the size to 1920x1080, it took forever to tran

Re: [FFmpeg-user] null video sink

2015-12-29 Thread Nicolas George
Le nonidi 9 nivôse, an CCXXIV, Roger Pack a écrit : > Could anyone be kind enough to show me how to use this in a filtergraph? > When I try to, it seems to still output and encode: > Stream mapping: > Stream #0:0 (h264) -> scale (graph 0) > Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264))

Re: [FFmpeg-user] Help with Broken Audio Download Please.

2015-12-29 Thread Budge
On 25/12/15 19:02, Carl Eugen Hoyos wrote: > Budge errichel.co.uk> writes: > >> I can of course supply the file but am not familiar with >> how to do so. > Either use http://www.datafilehost.com/ (512M filesize limit) > or read http://ffmpeg.org/bugreports.html (no filesize limit). > > Merry Chri

Re: [FFmpeg-user] Help with Broken Audio Download Please.

2015-12-29 Thread Carl Eugen Hoyos
Budge errichel.co.uk> writes: > I have uploaded a short text file and one file entitled > CPEBach_Sample_File.aac to the ffmpeg bugreports site. The file plays fine here (so sorry if I misunderstand) but I guess the following is what you want: $ ffmpeg -skip_initial_bytes 0x670 -i CPEBach_Sampl

Re: [FFmpeg-user] generating a poster uses all my ram

2015-12-29 Thread Carl Eugen Hoyos
chovy protonmail.com> writes: > ffmpeg -y -i "index_700_av-p.m3u8" -vf fps=1/60 > -update 1 "./poster.png" -hls_time 10 -hls_list_size 10 > -hls_wrap 10 -hls_flags delete_segments > -hls_segment_filename "./video%03d.ts" -c:v copy -c:a copy > test.m3u8 > test.log 2>&1 & > > Here is the log: >

Re: [FFmpeg-user] generating a poster uses all my ram

2015-12-29 Thread chovy
Original Message Subject: Re: [FFmpeg-user] generating a poster uses all my ram Local Time: December 29 2015 4:22 pm UTC Time: December 30 2015 12:22 am From: ceho...@ag.or.at To: ffmpeg-user@ffmpeg.org chovy protonmail.com> writes: > ffmpeg -y -i "index_700_av-p.m3u8" -vf fps

[FFmpeg-user] issue with trim & pan filters

2015-12-29 Thread Christian Johannesen
I ran into an issue with ffmpeg tonight where I could not trim a source because of the audio channel configuration of the track I was pulling audio from. The source has a track of 12 channels of audio. I can process the first two channels in the track to a stereo output with the pan filter. If I ap

Re: [FFmpeg-user] generating a poster uses all my ram

2015-12-29 Thread chovy
Original Message Subject: Re: [FFmpeg-user] generating a poster uses all my ram Local Time: December 29 2015 4:22 pm UTC Time: December 30 2015 12:22 am From: ceho...@ag.or.at To: ffmpeg-user@ffmpeg.org chovy protonmail.com> writes: > ffmpeg -y -i "index_700_av-p.m3u8" -vf fps