Re: [FFmpeg-user] ffmpeg drops 360 video metadata

2020-06-15 Thread Rama Krishna Thelagathoti
More over I do not want to use googles solution because I want to stream on the fly live and google solution seems to be manual solution On Mon, Jun 15, 2020 at 11:41 AM Rama Krishna Thelagathoti < mrk.ramakris...@gmail.com> wrote: > Thank you for your quick response. Let me clarify what I am

Re: [FFmpeg-user] Add delay to stream on twitch/youtube/restream.io, add chat and alerts

2020-06-15 Thread KoreanFanOfficial
After some researching i got working code: ## record screen and use delay filters ffmpeg -y -f x11grab -video_size 1920x1008 -framerate 30 -i :0.0+0,36 -f pulse -ac 2 -i default \ -vf 'tpad=start_duration=10:color=0xFF,scale=1280x720' -c:v libx264 -g 60 -preset ultrafast \ -b:v 3M -maxrate 3M

Re: [FFmpeg-user] Receive network stream and drop without decoding

2020-06-15 Thread Carl Eugen Hoyos
Am Mo., 15. Juni 2020 um 23:39 Uhr schrieb Andrius Narbutas : > > On 2020-06-15 23:58, Carl Eugen Hoyos wrote: > > $ ffmpeg -i input -map 0:a:0 -c copy -f null - > > ffmpeg -i > http://download.tsi.telecom-paristech.fr/gpac/dataset/dash/uhd/dashevc-ondemand-4s/dashevc-ondemand-4s-p60.mpd > -map

Re: [FFmpeg-user] Receive network stream and drop without decoding

2020-06-15 Thread Andrius Narbutas
On 2020-06-15 23:58, Carl Eugen Hoyos wrote: $ ffmpeg -i input -map 0:a:0 -c copy -f null - ffmpeg -i http://download.tsi.telecom-paristech.fr/gpac/dataset/dash/uhd/dashevc-ondemand-4s/dashevc-ondemand-4s-p60.mpd -map 0:a:0 -c copy -f null - <...> size=N/A time=00:02:31.80 bitrate=N/A

Re: [FFmpeg-user] Receive network stream and drop without decoding

2020-06-15 Thread Carl Eugen Hoyos
Am Mo., 15. Juni 2020 um 22:36 Uhr schrieb Andrius Narbutas : > Is there any way to tell ffmpeg to receive stream (network traffic) and > discard it immediately, without decoding? One example is: $ ffmpeg -i input -map 0:a:0 -c copy -f null - Other possibilities like -map 0:0 exist. Carl Eugen

Re: [FFmpeg-user] Libavcodec conflicts

2020-06-15 Thread Carl Eugen Hoyos
Am Mo., 15. Juni 2020 um 20:11 Uhr schrieb gatodiablo--- via ffmpeg-user : > > Moritz, Yes that is how it "should" work. You missed not only to find out what top-posting means and to avoid it here but also that whatever your issue is it cannot be solved within FFmpeg but only by your

[FFmpeg-user] Receive network stream and drop without decoding

2020-06-15 Thread Andrius Narbutas
Hello, trying to do something like "DASH load generator" for testing. Trying to simulate DASH client on unencrypted stream (using public stream in examples, should be accessible from anywhere): ffplay -nodisp -vst 3 -an -i

Re: [FFmpeg-user] Libavcodec conflicts

2020-06-15 Thread Moritz Barsnick
On Mon, Jun 15, 2020 at 18:10:56 +, gatodiablo--- via ffmpeg-user wrote: > Moritz, Yes that is how it "should" work. Either set of packages > either normal or extra should work, but that isn't what's happening. > I installed the extras packages and apt tells me ffmpeg has "broken >

Re: [FFmpeg-user] Add delay to stream on twitch/youtube/restream.io, add chat and alerts

2020-06-15 Thread Carl Zwanzig
On 6/15/2020 10:17 AM, Rob Hallam wrote: Is this still true? In OBS, Settings → Advanced there is a "Stream Delay" section (mentioned onhttps://obsproject.com/wiki/OBS-Studio-Overview). The default setting of 20s estimates mem usage of 11MB; I set the option to 120s which increased the memory

Re: [FFmpeg-user] Libavcodec conflicts

2020-06-15 Thread gatodiablo--- via ffmpeg-user
Moritz, Yes that is how it "should" work. Either set of packages either normal or extra should work, but that isn't what's happening. I installed the extras packages and apt tells me ffmpeg has "broken dependencies". Sent from ProtonMail mobile Original Message On Jun 15,

Re: [FFmpeg-user] Add delay to stream on twitch/youtube/restream.io, add chat and alerts

2020-06-15 Thread Rob Hallam
On Mon, 15 Jun 2020 at 17:26, Carl Zwanzig wrote: > Add delay- how long? (delay is memory- or disk-intensive*) OBS can insert a > short delay, but longer ones usually mean writing data into a file and > playing it back later (which could be only 5 seconds). There are many > "gotchas" around

[FFmpeg-user] ffmpeg enable between

2020-06-15 Thread compras via ffmpeg-user
I'm trying to draw text in a horizontal line and I want only Text1 for the first 5 seconds, and then Text2 starting from 5 seconds to 20 seconds, and Text3 starting from 10 seconds till the end. When I do this, my first text stays for about 15 seconds and the last two show up in the last 4

Re: [FFmpeg-user] ffmpeg drops 360 video metadata

2020-06-15 Thread Rama Krishna Thelagathoti
Thank you for your quick response. Let me clarify what I am looking for. I want to stream 360 degree video over rtmp port and nginx server is in the backend. I want to demonstrate dynamic bitrate adaptation(such as HLS/DASH) . non-360 degree video streaming is working as expected, However I have

Re: [FFmpeg-user] Add delay to stream on twitch/youtube/restream.io, add chat and alerts

2020-06-15 Thread Carl Zwanzig
(please do not top-post on this list) On 15/06/2020, KoreanFanOfficial wrote: Hello. I want to add delay, chat and alerts to my stream with ffmpeg. How i can do it? On 6/15/2020 3:48 AM, Tom Sparks wrote: Have you looked at OBS[1]? OBS filters can only add a short delay. Add delay- how

Re: [FFmpeg-user] ffmpeg drops 360 video metadata

2020-06-15 Thread Leo Butler via ffmpeg-user
Rama Krishna Thelagathoti writes: > Hello ffmpeg team, kindly help me with following issue > 360sample.mp4 is 360 video and with following command out.mp4 is also 360 > video. > > sudo ffmpeg -i 360sample.mp4 -vcodec libx264 -strict unofficial > -vprofile high -acodec aac out.mp4 An aside: You

Re: [FFmpeg-user] ffmpeg drops 360 video metadata

2020-06-15 Thread Moritz Barsnick
On Mon, Jun 15, 2020 at 07:33:06 -0500, Rama Krishna Thelagathoti wrote: > Hello ffmpeg team, kindly help me with following issue > 360sample.mp4 is 360 video and with following command out.mp4 is also 360 > video. > > sudo ffmpeg -i 360sample.mp4 -vcodec libx264 -strict unofficial > -vprofile

Re: [FFmpeg-user] Libavcodec conflicts

2020-06-15 Thread Moritz Barsnick
On Mon, Jun 15, 2020 at 13:04:18 +, FFmpeg user discussions wrote: This is pretty muc a distribution issue, but let's try to help: > So I wanted to install all the extra codecs for ffmpeg. I'm using > mint 19. Right away apt tells me Libavcodec-extra57 conflicts with > libavcodec57 and

[FFmpeg-user] Libavcodec conflicts

2020-06-15 Thread gatodiablo--- via ffmpeg-user
So I wanted to install all the extra codecs for ffmpeg. I'm using mint 19. Right away apt tells me Libavcodec-extra57 conflicts with libavcodec57 and libavfilter-extra6 conflicts with libavfilter6. I was able to get it to install by using the force-depends flag but now apt -f install complains

[FFmpeg-user] ffmpeg drops 360 video metadata

2020-06-15 Thread Rama Krishna Thelagathoti
Hello ffmpeg team, kindly help me with following issue 360sample.mp4 is 360 video and with following command out.mp4 is also 360 video. sudo ffmpeg -i 360sample.mp4 -vcodec libx264 -strict unofficial -vprofile high -acodec aac out.mp4 But with the following transcoding command out.mp4 is not

Re: [FFmpeg-user] Add delay to stream on twitch/youtube/restream.io, add chat and alerts

2020-06-15 Thread Tom Sparks
Have you looked at OBS[1]? [2]: https://obsproject.com/ On 15/06/2020, KoreanFanOfficial wrote: > Hello. I want to add delay, chat and alerts to my stream with ffmpeg. How i > can do it? > ___ > ffmpeg-user mailing list > ffmpeg-user@ffmpeg.org >

[FFmpeg-user] timeout error when reading RTSP/RTP incoming audio stream

2020-06-15 Thread Yannick Barbeaux
Hello I am struggling to read a multicast audio RTP stream controlled by RTSP. As soon as I launch the ffplay or ffmpeg command, the RTP traffic starts (tcpdump) on port 5004/UDP (as advertised in the SDP file), so it should read the stream correctly but I finally get a time-out instead (and empty

Re: [FFmpeg-user] Loop filter producing off by one errors?

2020-06-15 Thread Peter
On Mon, Jun 15, 2020 at 4:25 PM Peter wrote: > > > On Mon, Jun 15, 2020 at 3:20 PM Gyan Doshi wrote: > >> >> >> On 15-06-2020 07:38 am, Peter wrote: >> > Hello, >> > >> > I'm trying to create a video from a series of PNG frames and then loop >> > specific frames using the loop filter. It is

Re: [FFmpeg-user] Loop filter producing off by one errors?

2020-06-15 Thread Peter
On Mon, Jun 15, 2020 at 3:20 PM Gyan Doshi wrote: > > > On 15-06-2020 07:38 am, Peter wrote: > > Hello, > > > > I'm trying to create a video from a series of PNG frames and then loop > > specific frames using the loop filter. It is giving me a bit of trouble. > > Ffmpeg is dropping a single