Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Edward Park
Hi, Does that search the current directory with gnu find? I thought you need to do find . -type …. I just noticed your configure script failed. I (and probably everyone else too) assumed that you successfully built ffmpeg and had ffmpeg_g, etc. in /home/marc/ffmpeg_build because you said you c

[FFmpeg-user] Error raised in oggenc.c when trying to create opus file from RTP stream

2020-10-28 Thread Jonathan Baudanza
I am trying to write the contents of an RTC-OPUS stream to an OGG-OPUS file, ideally without doing any transcoding. The purpose is to send a WebRTC session to Google's Speech-to-text API, which accepts OGG-OPUS as input. The problem I'm having is that the opus muxer raises an error: "No extrada

Re: [FFmpeg-user] ffplay with Havision Makito X video encoder, H.264 stream, and "intra refresh" option enabled

2020-10-28 Thread Edward Park
Hi, > It was suggested here that I "attach a file" but I'm not sure how that > can be done with FFMPEG since it's unable to decode the video it > doesn't seem to write anything to a file when you try to record the > stream. I don’t know about the issue you’re describing but I think nc (or it migh

Re: [FFmpeg-user] ffplay with Havision Makito X video encoder, H.264 stream, and "intra refresh" option enabled

2020-10-28 Thread Kevin Hise
Can I re-ask this question? The Haivision (sorry...it's misspelled in the subject) Makito-X encoder has a "intra refresh" setting that isn't supported by FFPLAY. The Haivision hardware encoder takes SDI input and encodes it into h.264 which is sent as transport stream over UDP. When you attempt to

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Marc Erickson
marc@pet310s:~$ find -type f -name "ffmpeg" marc@pet310s:~$ Virus-free. www.avast.com

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Reindl Harald
Am 28.10.20 um 23:41 schrieb Carl Zwanzig: On 10/28/2020 3:37 PM, Reindl Harald wrote: which shell don't respect PATH? Not relevant. explain why either make your binary available in PATH or type the fucking full qualified path to it Such polite language (and really, NOBODY has such

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Carl Zwanzig
On 10/28/2020 3:37 PM, Reindl Harald wrote: which shell don't respect PATH? Not relevant. either make your binary available in PATH or type the fucking full qualified path to it Such polite language (and really, NOBODY has such expansive knowledge and experience as you do, and it's rid

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Reindl Harald
Am 28.10.20 um 23:35 schrieb Carl Zwanzig: On 10/28/2020 2:02 PM, Reindl Harald wrote: learn about https://en.wikipedia.org/wiki/PATH_(variable) or type your f**g path full qualified - basics not related to ffmpeg Or first ask if the OP is using a c-shell derivative where "rehash" is the co

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Carl Zwanzig
On 10/28/2020 2:02 PM, Reindl Harald wrote: learn about https://en.wikipedia.org/wiki/PATH_(variable) or type your f**g path full qualified - basics not related to ffmpeg Or first ask if the OP is using a c-shell derivative where "rehash" is the correct command to make new ones accessible (don

Re: [FFmpeg-user] Need help to re-stream multicast

2020-10-28 Thread Karim SLIMANI
Hello, i am not sure about PAT and PMT errors. Maybe using mpegts muxer options : https://ffmpeg.org/ffmpeg-formats.html#mpegts-1 PS: note that fifo_size and overrun_nonfatal are "receiver" only options and, i think, have no effect on output udp url. Le mer. 28 oct. 2020 à 18:52, Daniel Dim

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Reindl Harald
Am 28.10.20 um 21:38 schrieb Marc Erickson: Am a novice. and why do you thinl as a novice you need "sudo" at all? On Wed, Oct 28, 2020 at 1:14 PM Edward Park wrote: Hi, It looks like you installed to $HOME/bin, many systems (I think most Debian based) restrict sudo PATH to “secure” dire

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Edward Park
Hi, > Am a novice. That’s a really bad reason tbh. ~/bin/ffmpeg will probably work if $HOME/bin isn’t in your path. Regards, Ted Park ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe,

Re: [FFmpeg-user] Issue with combining mp4 audio file and an image

2020-10-28 Thread Edward Park
Hi, > Here is the error I am getting: > > > Stream specifier ':a' in filtergraph description > [0:v]setsar=1[v0];[1:v]setsar=1[v1];[v0][1:a][v1][2:a]concat=n=4:v=1:a=1 > matches no streams. Your input #2 is a jpeg. Regards, Ted Park ___ ffmpeg-use

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Marc Erickson
Am a novice. On Wed, Oct 28, 2020 at 1:14 PM Edward Park wrote: > Hi, > > It looks like you installed to $HOME/bin, many systems (I think most > Debian based) restrict sudo PATH to “secure” directories. Why do you need > sudo anyways? > > Regards, > Ted Park > > _

[FFmpeg-user] Issue with combining mp4 audio file and an image

2020-10-28 Thread Randy Johnson via ffmpeg-user
I am having trouble getting this command right: ffmpeg \ -loop 1 -framerate 30 -t 41.6 -i filler640480.jpg -i 79c11008-e36c-492d- b776-a06d4cc6c0c0.mp4 -y \ -loop 1 -framerate 30 -t 5.408 -i filler640480.jpg -i 68a23b17-04b6- 4484-b9d8-77fddbe3689c.mp4 -y \ -f lavfi -t 0.1 -i anullsrc=channel_layo

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Reindl Harald
Am 28.10.20 um 21:39 schrieb Marc Erickson: Entering the command without sudo results in: ffmpeg -i '/data3/Media2/Renamed/Billy Idol/1994 The Best/Billy Idol - The Best.ape' -acodec flac '/data3/Media2/Renamed/Billy Idol/1994 The Best/Billy Idol - The Best.flac' Command 'ffmpeg' not found, b

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Reindl Harald
Am 28.10.20 um 20:50 schrieb Marc Erickson: I compiled ffmpeg using the instructions here: https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu I didn't include libfdk-aac libmp3lame libsvtav1 When I tried to convert an .ape file to a .flac file, I got the error: sudo: ffmpeg: com

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Marc Erickson
Entering the command without sudo results in: ffmpeg -i '/data3/Media2/Renamed/Billy Idol/1994 The Best/Billy Idol - The Best.ape' -acodec flac '/data3/Media2/Renamed/Billy Idol/1994 The Best/Billy Idol - The Best.flac' Command 'ffmpeg' not found, but can be installed with: sudo snap install ffm

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Nicolas George
Marc Erickson (12020-10-28): > I compiled ffmpeg using the instructions here: > > https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu > sudo: ffmpeg: command not found You typed "sudo ffmpeg", which is not in this compilation guide, and which you should not have typed. -- Nicolas George s

Re: [FFmpeg-user] zmq example

2020-10-28 Thread Michael Koch
Am 28.10.2020 um 21:07 schrieb Gyan Doshi: On 28-10-2020 12:21 am, Michael Koch wrote: Hello, I'm testing this command line which is copied from the documentation: https://www.ffmpeg.org/ffmpeg-all.html#zmq_002c-azmq ffplay -dumpgraph 1 -f lavfi "color=s=100x100:c=red[l];color=s=100x100:c=b

Re: [FFmpeg-user] sudo: ffmpeg: command not found

2020-10-28 Thread Edward Park
Hi, It looks like you installed to $HOME/bin, many systems (I think most Debian based) restrict sudo PATH to “secure” directories. Why do you need sudo anyways? Regards, Ted Park ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/m

Re: [FFmpeg-user] zmq example

2020-10-28 Thread Gyan Doshi
On 28-10-2020 12:21 am, Michael Koch wrote: Hello, I'm testing this command line which is copied from the documentation: https://www.ffmpeg.org/ffmpeg-all.html#zmq_002c-azmq ffplay -dumpgraph 1 -f lavfi "color=s=100x100:c=red[l];color=s=100x100:c=blue[r];nullsrc=s=200x100,zmq[bg];[bg][l]over

Re: [FFmpeg-user] Problem in v360?

2020-10-28 Thread Michael Koch
Am 23.10.2020 um 17:19 schrieb Michael Koch: Hello, It seems there is a problem in the v360 filter. This command line doesn't rotate the correct point to the image center. The default rotation order should be yaw pitch roll, which means after the rotation the point with azimut 180° and height

Re: [FFmpeg-user] Need help to re-stream multicast

2020-10-28 Thread Karim SLIMANI
hello, i think you need to increase fifo_size parameter. (remove pkt_size and buffer_size parameters, but keep overrun_nonfatal=1) try a fifo_size=524288 if it continue to crash, then try a value of fifo_size=2621400 Circular buffer overrun happen when the computer cannot catch up in processing