Re: [FFmpeg-user] Clipping off unwanted span of mp4 file

2018-03-18 Thread Carl Zwanzig
On 3/18/2018 2:27 PM, JD wrote: The appended span starts at 2 hours and 30 minutes and 53 seconds. $ ffmpeg -i input -c copy -t 2:30:53 out.mp4 Carl Eugen Thanx Carl. Just what the doc ordered :) Ah, I thought you wanted to extract a piece, not simply truncate. z!

Re: [FFmpeg-user] Clipping off unwanted span of mp4 file

2018-03-18 Thread Carl Zwanzig
Possibly with lots of command-line hackery ffmpeg it might be able to do the job (extract segments and concat them together), but a real editor will make the job a lot easier. I've recently been using the shotcut editor (https://shotcut.org/), which is also opensource/free and uses some

Re: [FFmpeg-user] Clipping off unwanted span of mp4 file

2018-03-18 Thread JD
On 03/18/2018 12:03 PM, Carl Eugen Hoyos wrote: 2018-03-18 18:31 GMT+01:00, JD : I have an mp4 file that has unwanted span of video APPENDED to it. How do I delete that appended span? FFmpeg is not a file editor and therefore is unable to "delete" something from an

Re: [FFmpeg-user] Subtitle file from m3u8

2018-03-18 Thread Moritz Barsnick
On Sat, Mar 17, 2018 at 22:33:42 +0100, Carl Eugen Hoyos wrote: > > But I can't find a way to download the subtitle file within the command. > > Could you suggest me any possibilities to achieve that, even further - to > > embed the subtitle to the video? > > Afaik, mpegts does not support any

Re: [FFmpeg-user] FFMpeg libvpx 1.7 support

2018-03-18 Thread ZikZak
Hello, I had these kind of compilation errors with previous version of Libvpx and Ffmpeg. Usually I had to manually delete the files related to the old version of libvpx from /usr/local/lib then to compile libvpx and finally ffmpeg. If you still have ffmpeg installed a "ldd

Re: [FFmpeg-user] FFMpeg libvpx 1.7 support

2018-03-18 Thread Carl Eugen Hoyos
2018-03-17 19:48 GMT+01:00, pilot constatinus : > Hi, it seems that whenever I try to encode with ffmpeg ( latest version > from git) and vp9 ( libvpx v1.7 ) i get "ABI version mismatch". Command line and complete, uncut console output missing. > Does this mean that ffmpeg

Re: [FFmpeg-user] Clipping off unwanted span of mp4 file

2018-03-18 Thread Carl Eugen Hoyos
2018-03-18 18:31 GMT+01:00, JD : > I have an mp4 file that has unwanted span of video > APPENDED to it. > How do I delete that appended span? FFmpeg is not a file editor and therefore is unable to "delete" something from an existing file. Fortunately, FFmpeg contains an mp4

Re: [FFmpeg-user] He aac sampling rate and time stamps

2018-03-18 Thread Ronak
Hey Carl, Are you sure that this is how HE-AACv2 works? Apple's AVAudioFile class is able to see the correct sampling rate & channel count. AVURLAsset & Exoplayer does not properly see it though. Does ffmpeg write the sampling rate in multiple parts of the MP4 container? If so, maybe one of

Re: [FFmpeg-user] Can I create an mp4 with dwell?

2018-03-18 Thread Lou Logan
On Sun, Mar 18, 2018, at 9:38 AM, Lou Logan wrote: > Last image should display for a half second + 1 frame (I did not verify). ...assuming it's one of the images in ord-hrrr-slp%02d.png and not segregated. ___ ffmpeg-user mailing list

Re: [FFmpeg-user] Can I create an mp4 with dwell?

2018-03-18 Thread Lou Logan
On Sat, Mar 17, 2018, at 11:41 AM, Geoff Fox wrote: > I'm a meteorologist making my own weather maps. I use ffmpeg to create my > animations from still images, like this: > http://45.79.86.175/output/nam/sfc/conus-nam-slp.mp4 > > Typically: ffmpeg -r 10 -f image2 -s 1920x1080 -start_number 02

[FFmpeg-user] Clipping off unwanted span of mp4 file

2018-03-18 Thread JD
Hi all, I have an mp4 file that has unwanted span of video APPENDED to it. How do I delete that appended span? The appended span starts at 2 hours and 30 minutes and 53 seconds. Thanx!! ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

[FFmpeg-user] Can I create an mp4 with dwell?

2018-03-18 Thread Geoff Fox
I'm a meteorologist making my own weather maps. I use ffmpeg to create my animations from still images, like this: http://45.79.86.175/output/nam/sfc/conus-nam-slp.mp4 Typically: ffmpeg -r 10 -f image2 -s 1920x1080 -start_number 02 -i /var/www/html/output/hrrr/sfc/ord-hrrr-slp%02d.png -y