Re: [FFmpeg-user] silenceremove use

2020-02-19 Thread Ted Park
The attachment in your first reply went through fine, I can see it. But it is too simple, I mean I can remove silence in it pretty well with % ffplay Downloads/sample.wav -af "silenceremove=start_periods=1:start_threshold=-30dB" But I assume you’re having more trouble with the original file beca

Re: [FFmpeg-user] Using FFMpeg to produce LL-HLS

2020-02-19 Thread Simon Brown
On Wed, 19 Feb 2020 at 15:19, Ted Park wrote: > > Hello, > > That’s sort of what a remux does in the first place. > I take it you are going to re-encode after all, can you post the stdout > and stderr output from running the commands? Is that the only error or are > there more errors before that

Re: [FFmpeg-user] http_persistent not honored when encryption is enabled

2020-02-19 Thread Ted Park
Hello, Persisting connections is the default and the same is true for multiple connections if the server supports it. Have you ruled out your http server config as the cause? Also does this matter for localhost, or is that just a placeholder for examples? Regards, Ted Park

Re: [FFmpeg-user] Using FFMpeg to produce LL-HLS

2020-02-19 Thread Ted Park
> Ok, further tests reveal that it is the TS nature of it that FFmpeg is > complaining about. If I run two separate ffmpeg commands, the first one > re-encoding with libx264 and outputting mpegts to udp://127.0.0.1:9036 and > the next receiving from udp:9036 and converting to -f dash it throws the

Re: [FFmpeg-user] silenceremove use

2020-02-19 Thread Ted Park
>> Hey there, >> As you’ve noticed you pretty much need to know the basic “profile,” I guess, >> of the silence in your audio for best results. You could use the show volume >> filter with ffplay, > > If audio was in any way processed prior to silence removal, like in > this case with gain, you wi

Re: [FFmpeg-user] hls and input http stream changes problem

2020-02-19 Thread Ted Park
> Because > a) I did not know about ffmpeg before (I created the scripts about a year > ago) > b) When I had found ffmpeg it seemed to me that making loops and > streaming with it is impossible. (I need to stream also to HTML5 clients > now.) > > Am I wrong? Morning, I mean I’m sure you’re

Re: [FFmpeg-user] Ffmeg multi-threading introduction

2020-02-19 Thread Jim Shupert
On 2/18/2020 3:42 AM, Mohammed Bey Ahmed Khernache wrote: Hello, I am novice to programming upon ffmpeg. I would like to know how ffmpeg manages to decode multiple regions of a frame (slices, tiles, NALs, etc) in parallel. Could you point me to the files/functions that do this job? Best regards

[FFmpeg-user] From .m4s to .ts

2020-02-19 Thread Jesús Aguilar Armijo
Dear ffmpeg community. I want to perform a repackaging from .m4s (DASH segments) to .ts (HLS segments). Is that possible to do with FFmpeg? How can I proceed? Thank you very much for your help. Kind regards. ___ ffmpeg-user mailing list ffmpeg-user@f

Re: [FFmpeg-user] hls and input http stream changes problem

2020-02-19 Thread Michal Hajek
út 18. 2. 2020 v 10:33 odesílatel andrei ka napsal: > and why don't you do it all (almost) in ffmpeg ? make : > 1) ffmpeg playlist input with your several files, transcode it the all to > required resolution / br / gops and stream it to local multicast ; > Because a) I did not know about ffm

[FFmpeg-user] http_persistent not honored when encryption is enabled

2020-02-19 Thread Valentin Schweitzer
Hi, Enabling http_persistent and encryption in the hls muxer leads to HTTP connections that multiple Web servers cannot deal with properly. In particular, ffmpeg sends HTTP PUT requests with a "Connection: keep-alive" header for each segment file, but it closes the connection right afterwards and

Re: [FFmpeg-user] v360 expressions

2020-02-19 Thread Michael Koch
Am 19.02.2020 um 14:04 schrieb Paul B Mahol: On 2/19/20, Michael Koch wrote: Hi, would it be possible to allow expressions for the yaw, pitch and roll parameters in the v360 filter? I have a project where I need these angles to be a function of time. Nope, would make filter 10x times slower.

Re: [FFmpeg-user] v360 expressions

2020-02-19 Thread Paul B Mahol
On 2/19/20, Michael Koch wrote: > Hi, > > would it be possible to allow expressions for the yaw, pitch and roll > parameters in the v360 filter? I have a project where I need these > angles to be a function of time. > Nope, would make filter 10x times slower. > Michael > > __

[FFmpeg-user] v360 expressions

2020-02-19 Thread Michael Koch
Hi, would it be possible to allow expressions for the yaw, pitch and roll parameters in the v360 filter? I have a project where I need these angles to be a function of time. Michael ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg

Re: [FFmpeg-user] Using FFMpeg to produce LL-HLS

2020-02-19 Thread Simon Brown
> > >> C:\xampp\htdocs>\ffmpeg-20200216-8578433-win64-static\bin\ffmpeg.exe -i > udp://127.0.0.1:9034 -codec copy -b:v 6000k -window_size 5 > -extra_window_size 5 -use_timeline 1 -seg_duration 1 -frag_duration 0.2 > -streaming 1 -adaptation_sets "id=0,streams=v id=1,streams=a" > -dash_segment_type

Re: [FFmpeg-user] silenceremove use

2020-02-19 Thread To ny
How do you figure results are correct? ffmpeg -i '/home/tony/test/Recording_53.wav' -af silenceremove=1:0:-20dB recording53_silences_removed.wav this one does'nt remove anything. ffmpeg -i '/home/tony/test/Recording_53.wav' -af silenceremove=0:0:0:0:0:-1:0:-20dB:0:0:1:0 recording53_silences_re

Re: [FFmpeg-user] silenceremove use

2020-02-19 Thread Paul B Mahol
On 2/19/20, To ny wrote: > Hello, Thanks so much for your reply. > > Would the microphone pickup just as much sounds (even faint ones) > if i set gain back to 1.0x? > How are you supposed to differ from faint ones and noise itself. Get better microphone... > If audio was in any way processed pr

Re: [FFmpeg-user] silenceremove use

2020-02-19 Thread To ny
Hello, Thanks so much for your reply. Would the microphone pickup just as much sounds (even faint ones) if i set gain back to 1.0x? If audio was in any way processed prior to silence removal, like in this case with gain, you will certainly get poor results. __

Re: [FFmpeg-user] Using FFMpeg to produce LL-HLS

2020-02-19 Thread Simon Brown
> > > > > Am 18.02.2020 um 17:24 schrieb Simon Brown : > > > > Is the codec tag h264 different to what libx264 produces? Is there a > > reason it can't work with h264 codec tag? > > Contrary to what is sometimes claimed you have to read errors from top: > The issue is apparently that the dash muxe

Re: [FFmpeg-user] silenceremove use

2020-02-19 Thread Paul B Mahol
On 2/19/20, To ny wrote: > Hello, and thanks so much for your reply. > > I was actually only requesting help for the silenceremove arguments (or > settings or > however they're called) on the commandline. > > The -20 dB threshold will not be my final settings. It was just to make sure > something

Re: [FFmpeg-user] silenceremove use

2020-02-19 Thread To ny
Hello, and thanks so much for your reply. I was actually only requesting help for the silenceremove arguments (or settings or however they're called) on the commandline. The -20 dB threshold will not be my final settings. It was just to make sure something is removed. I don't know if you only r

Re: [FFmpeg-user] silenceremove use

2020-02-19 Thread Paul B Mahol
On 2/19/20, Ted Park wrote: >> Is there anyone who has experience with the silenceremove filter? I'm >> trying to remove long silences from recordings i made on my phone. The >> silences are actually a constant noise because of the microphone gain is >> set to 5.0x. (The playback meter in Audacity

Re: [FFmpeg-user] silenceremove use

2020-02-19 Thread Ted Park
> Is there anyone who has experience with the silenceremove filter? I'm trying > to remove long silences from recordings i made on my phone. The silences are > actually a constant noise because of the microphone gain is set to 5.0x. (The > playback meter in Audacity says the noise is around -48

[FFmpeg-user] FFmpeg do not activate stream capture on MS Surface Pro 7 Rear camera

2020-02-19 Thread IT
Hi, MS Surface Pro 7 rear camera does not activate when trying to capture stream. This is the command I am using : ffmpeg.exe -f dshow -i video="Surface Camera Rear" -f mpeg1video http://127.0.0.1:8082/test/640/360 ffmpeg version git-2020-02-16-8578433 Copyright (c) 2000-2020 the FFmpeg develo