[FFmpeg-user] RTCP RR Analysis using FFMPEG

2018-04-30 Thread Mohammed Sha
Hi All, We are using Wowza streaming Engine for live streaming video. The RTSP stream available in camera is pushed to wowza server with the help of ffmpeg binary. I need to intercept RTCP RR packets from the wowza server in order to change the encoder bitrate or FPS according to the packet

Re: [FFmpeg-user] SEGV when using VMAF filter.

2018-04-30 Thread Kevin Wheatley
Sent on the go... > On 30 Apr 2018, at 18:58, Carl Eugen Hoyos wrote: > > 2018-04-30 16:33 GMT+02:00, Kevin Wheatley : > >> I note that a similar report was made >> https://trac.ffmpeg.org/ticket/6865 but that was closed. > > Looks like ticket

Re: [FFmpeg-user] Unable to build FFmpeg 4.0 on macOS

2018-04-30 Thread Carl Eugen Hoyos
2018-04-30 21:04 GMT+02:00, Nomis101  : > Am 30.04.18 um 20:10 schrieb Carl Eugen Hoyos: >> Then you need something like --extra-ldflags=-L/opt/local/lib > > Thanks, this did the trick! Now it builds as expected. Yippee! But why > does an older ffmpeg build without this

Re: [FFmpeg-user] Unable to build FFmpeg 4.0 on macOS

2018-04-30 Thread Nomis101 
Am 30.04.18 um 20:10 schrieb Carl Eugen Hoyos: > Then you need something like --extra-ldflags=-L/opt/local/lib Thanks, this did the trick! Now it builds as expected. Yippee! But why does an older ffmpeg build without this extra-ldflag? Am 30.04.18 um 20:10 schrieb Carl Eugen Hoyos: > I was

Re: [FFmpeg-user] Unable to build FFmpeg 4.0 on macOS

2018-04-30 Thread Carl Eugen Hoyos
2018-04-29 21:26 GMT+02:00, Nomis101  : > Am 29.04.18 um 16:31 schrieb Carl Eugen Hoyos: >> Where is libsoxr.a installed? > > There is an /opt/local/lib/libsoxr.dylib. Then you need something like --extra-ldflags=-L/opt/local/lib > Macports did not install me an libsoxr.a I

Re: [FFmpeg-user] How to download the ts files from .m3u8 playlist

2018-04-30 Thread Carl Eugen Hoyos
2018-04-30 20:07 GMT+02:00, Carl Eugen Hoyos : > Not true for every input file containing aac, note that FFmpeg cannot > read "raw" aac files, only adts and loas/latm. Ticket #2458. Carl Eugen ___ ffmpeg-user mailing list

Re: [FFmpeg-user] How to download the ts files from .m3u8 playlist

2018-04-30 Thread Carl Eugen Hoyos
2018-04-27 17:40 GMT+02:00, Moritz Barsnick : > $ ffmpeg -i https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8 > -map 0:12 -c copy -f rawvideo rawfile.rawh264 -map 0:13 -c copy > -f rawvideo rawfile.rawaac > > There's no "rawaudio" muxer, but I believe "rawvideo" just leaves >

Re: [FFmpeg-user] SEGV when using VMAF filter.

2018-04-30 Thread Carl Eugen Hoyos
2018-04-30 16:33 GMT+02:00, Kevin Wheatley : > I note that a similar report was made > https://trac.ffmpeg.org/ticket/6865 but that was closed. Looks like ticket #6866 (which should have been easier to find). Carl Eugen ___

Re: [FFmpeg-user] remove audio in the latest version windows 20180429-19c3df0-win64-static

2018-04-30 Thread Carl Eugen Hoyos
2018-04-30 17:50 GMT+02:00, juan carlos rebate : > Since the last version something must have changed because it doesn't work > as it should, or at least not as it always has. > I have a file with 2 audio tracks and I want to remove one of them,the file > has three tracks, one

Re: [FFmpeg-user] Split video with ffmpeg

2018-04-30 Thread Gabriel Balaich
> > ffmpeg -i inputFile.mp4 -c copy -map 0 -f segment -segment_time 100 > outputFile.mp4 > May I ask what framerate the source is? ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit

Re: [FFmpeg-user] remove audio in the latest version windows 20180429-19c3df0-win64-static

2018-04-30 Thread Moritz Barsnick
On Mon, Apr 30, 2018 at 15:50:55 +, juan carlos rebate wrote: > I have a file with 2 audio tracks and I want to remove one of them,the file > has three tracks, one video track and two audio tracks,in previous versions > I usually do the following: > ffmpeg-i imput.avi -map 0:0 -vcodec copy

[FFmpeg-user] remove audio in the latest version windows 20180429-19c3df0-win64-static

2018-04-30 Thread juan carlos rebate
Since the last version something must have changed because it doesn't work as it should, or at least not as it always has. I have a file with 2 audio tracks and I want to remove one of them,the file has three tracks, one video track and two audio tracks,in previous versions I usually do the

Re: [FFmpeg-user] Assistance with "pts have no value" error adding subtitle stream

2018-04-30 Thread Karen Norton
On Sun, Apr 29, 2018 at 10:36 AM, Carl Eugen Hoyos wrote: > 2018-04-28 22:53 GMT+02:00, Karen Norton : > > > \ffmpeg-folder\ffmpeg\bin>ffmpeg -i terrorout.mp4 -i > > terrors01e10_eleventh.srt -metadata media_type="10" -metadata show="The > > Terror"

[FFmpeg-user] SEGV when using VMAF filter.

2018-04-30 Thread Kevin Wheatley
Hi, I've just built a version of ffmpeg n4.0 from ace829cb45cff530b8a0aed6adf18f329d7a98f6 linked against libvmaf ba5356cb41cf3b19ca0bb108bd8e86e9da402f94. I notice when running commands similar to the examples in the FFmpeg documentation: ffmpeg -i test2.mov -i test3.mov -lavfi libvmaf -f null

Re: [FFmpeg-user] How to download the ts files from .m3u8 playlist

2018-04-30 Thread Moritz Barsnick
On Mon, Apr 30, 2018 at 08:41:32 +, m.kamalasubha m.kamalasubha wrote: > I tried the above command line. It works. Nice! > But the requirement is to have individual raw files for every individual ts > file. Again, you didn't say so originally. > Is there any way to generate raw file for

Re: [FFmpeg-user] How to download the ts files from .m3u8 playlist

2018-04-30 Thread m.kamalasubha m.kamalasubha
Hello Moritz, Thanks for the reply. I tried the above command line. It works. But the requirement is to have individual raw files for every individual ts file. Is there any way to generate raw file for every ts file? ___ ffmpeg-user mailing list