[FFmpeg-user] Error extracting srt

2020-08-05 Thread Alex Zachopoulos
Hi all, I want to extract the SRT stream from mp4 files. On my MacPro with High Sierra running ffmpeg 3.3 all is fine. On my MacBook Pro with Catalina running ffmpeg 4.3 I keep getting an error. This is the command I use to extract Stream #0:2 (subtitle) from file 1.mp4, on both computers:

Re: [FFmpeg-user] ERROR: libass not found using pkg-config

2020-07-22 Thread shahrin zen via ffmpeg-user
Ok..now its workingThank you very much Mr Harald. Sent from Yahoo Mail for iPhone On Monday, July 20, 2020, 12:02 AM, Reindl Harald wrote: Am 19.07.20 um 17:59 schrieb shahrin zen via ffmpeg-user: > Hi, I am having error during compiling ffmpeg. > > ERROR: libass not found using

Re: [FFmpeg-user] ERROR: libass not found using pkg-config

2020-07-19 Thread Reindl Harald
Am 19.07.20 um 17:59 schrieb shahrin zen via ffmpeg-user: > Hi, I am having error during compiling ffmpeg. > > ERROR: libass not found using pkg-config install the devel-package or don't use --enable-libass doesn't sound that logical? ___ ffmpeg-user

Re: [FFmpeg-user] Error while filtering: Cannot allocate memory Failed to inject frame into filter network: Cannot allocate memory

2020-06-04 Thread Carl Eugen Hoyos
Am Do., 4. Juni 2020 um 16:43 Uhr schrieb lagmoellertim : > Error while filtering: Cannot allocate memory > Failed to inject frame into filter network: Cannot allocate memory > Error while processing the decoded data for stream #0:1 > > Here is the console output: >

Re: [FFmpeg-user] Error while filtering: Cannot allocate memory Failed to inject frame into filter network: Cannot allocate memory

2020-06-04 Thread Mark Filipak
On 06/04/2020 10:43 AM, lagmoellertim wrote: Hello, currently, I'm getting this error: Error while filtering: Cannot allocate memory Failed to inject frame into filter network: Cannot allocate memory Error while processing the decoded data for stream #0:1 Here is the console output:

[FFmpeg-user] Error while filtering: Cannot allocate memory Failed to inject frame into filter network: Cannot allocate memory

2020-06-04 Thread lagmoellertim
Hello, currently, I'm getting this error: Error while filtering: Cannot allocate memory Failed to inject frame into filter network: Cannot allocate memory Error while processing the decoded data for stream #0:1 Here is the console output:

Re: [FFmpeg-user] Error when reading file as stream

2020-05-05 Thread adam smith via ffmpeg-user
> On 5 May 2020, at 17:15, Carl Eugen Hoyos wrote: > > Am Di., 5. Mai 2020 um 14:19 Uhr schrieb adam smith via ffmpeg-user > : > >> That will not resolve 3rd party files > > What's wrong with using qtfaststart on them (or on all files)? > The problem is that the platform running ffmpeg is a

Re: [FFmpeg-user] Error when reading file as stream

2020-05-05 Thread Carl Eugen Hoyos
Am Di., 5. Mai 2020 um 14:19 Uhr schrieb adam smith via ffmpeg-user : > That will not resolve 3rd party files What's wrong with using qtfaststart on them (or on all files)? Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] Error when reading file as stream

2020-05-05 Thread adam smith via ffmpeg-user
> On 4 May 2020, at 16:23, Carl Eugen Hoyos wrote: > > The result is very similar, but qtfaststart takes an existing mov file and > only moves the index in front of the file, leaving everything else exactly > identical while ffmpeg -i input -movflags +faststart out.mov writes a > new file

Re: [FFmpeg-user] Error when reading file as stream

2020-05-04 Thread Carl Eugen Hoyos
Am Mo., 4. Mai 2020 um 14:35 Uhr schrieb adam smith via ffmpeg-user : > > Use qtfaststart to “fix” mov files, so they don’t require seeking anymore. > > Thanks, I use -flags +global_header -movflags +faststart on mp4 files I > create using ffmpeg, is that the same thing? The result is very

Re: [FFmpeg-user] Error when reading file as stream

2020-05-04 Thread adam smith via ffmpeg-user
Thanks Carl, Thanks for stopping me going down a never ending rabbit hole. > On 4 May 2020, at 13:18, Carl Eugen Hoyos wrote: > > Many files, esp. some mov/mp4 files, require seeking. Seeking is impossible > if you provide the input through a pipe, this is not a limitation of FFmpeg. Good to

Re: [FFmpeg-user] Error when reading file as stream

2020-05-04 Thread Carl Eugen Hoyos
> Am 04.05.2020 um 11:38 schrieb adam smith via ffmpeg-user > : > > When passing the same source to ffmpeg as a stream, through pipe; I am > getting errors. This is not for all files, eg mxf files containing DV50, > XDCAMHD422 etc have not shown any issue, neither do many mp4 files. > All

[FFmpeg-user] Error when reading file as stream

2020-05-04 Thread adam smith via ffmpeg-user
Hi you lovely people, I have another question that I cannot find a resolution for, so I am hoping somebody can shed a little light on the subject. When passing the source as a file into ffmpeg from regular storage, my ffmpeg commands are working correctly and I am happy with the output. When

Re: [FFmpeg-user] Error ‘can’t open stats file’ using 2 pass encoding with multiple audio inputs

2020-03-14 Thread Carl Eugen Hoyos
Am Sa., 14. März 2020 um 21:06 Uhr schrieb Carl Eugen Hoyos : > The problem gets worse by the fact that in general, neither ffmpeg nor x264 > can > detect that you are using different settings for the two passes (x264 > sometimes > crashes if the passes do not fit, I always wondered if this

Re: [FFmpeg-user] Error ‘can’t open stats file’ using 2 pass encoding with multiple audio inputs

2020-03-14 Thread Carl Eugen Hoyos
Am Sa., 14. März 2020 um 22:53 Uhr schrieb Jeff Langston : > Right -an in the first pass is referenced in the docs "On pass 1, you may > just deactivate audio and set output to null" Let me repeat: The problem is not only that you get a completely broken encode (wrong frames get higher bitrates)

Re: [FFmpeg-user] Error ‘can’t open stats file’ using 2 pass encoding with multiple audio inputs

2020-03-14 Thread Jeff Langston
Right -an in the first pass is referenced in the docs "On pass 1, you may just deactivate audio and set output to null" Which looking closer at the docs and some further experimentation I was able to sort out my issue. I didn't realize the -pass argument also took a stream specifier which was

Re: [FFmpeg-user] Error ‘can’t open stats file’ using 2 pass encoding with multiple audio inputs

2020-03-14 Thread Reindl Harald
Am 14.03.20 um 21:06 schrieb Carl Eugen Hoyos: > name to x264) but in general you cannot do this, you have to use the same > output > format and especially the same audio for pass one and two. The reason is that > ffmpeg (the application) may duplicate (or drop) frames to keep a/v sync and >

Re: [FFmpeg-user] Error ‘can’t open stats file’ using 2 pass encoding with multiple audio inputs

2020-03-14 Thread Carl Eugen Hoyos
Am Sa., 14. März 2020 um 20:09 Uhr schrieb Jeff Langston : > > Hi, > > Here's the input commands boiled down to the simplest reproducible > versions. > > Here's links to the input files https://s3.amazonaws.com/Jlangston/bunny.mp4 > https://s3.amazonaws.com/Jlangston/track1.m4a > Trying either

Re: [FFmpeg-user] Error ‘can’t open stats file’ using 2 pass encoding with multiple audio inputs

2020-03-14 Thread Jeff Langston
Hi, Here's the input commands boiled down to the simplest reproducible versions. Here's links to the input files https://s3.amazonaws.com/Jlangston/bunny.mp4 https://s3.amazonaws.com/Jlangston/track1.m4a Trying either without the 2nd audio input or without rendering multiple video versions with

Re: [FFmpeg-user] Error ‘can’t open stats file’ using 2 pass encoding with multiple audio inputs

2020-03-14 Thread Carl Eugen Hoyos
Am Sa., 14. März 2020 um 06:04 Uhr schrieb Jeff Langston : > I'm trying to sort out an issue I've run into with ffmpeg on the cli and > was wondering if anyone might be able to help. I am trying to leverage 2 > pass encoding as well as inputting additional audio tracks to generate > multiple

[FFmpeg-user] Error ‘can’t open stats file’ using 2 pass encoding with multiple audio inputs

2020-03-13 Thread Jeff Langston
Hi all, I'm trying to sort out an issue I've run into with ffmpeg on the cli and was wondering if anyone might be able to help. I am trying to leverage 2 pass encoding as well as inputting additional audio tracks to generate multiple output versions (MPEG-DASH/HLS/MP4/MP3). During the 2nd pass

Re: [FFmpeg-user] Error implementing the AFFTDN filter with a noise type of w

2020-02-05 Thread tmason
05, 2020 9:44 AM To: FFmpeg user discussions Subject: Re: [FFmpeg-user] Error implementing the AFFTDN filter with a noise type of w On Wed, Feb 05, 2020 at 08:53:29 -0500, tma...@trueprobity.com wrote: > I have not been able to find an example of the AFFTDN filter > implemented and working.

Re: [FFmpeg-user] Error implementing the AFFTDN filter with a noise type of w

2020-02-05 Thread Moritz Barsnick
On Wed, Feb 05, 2020 at 08:53:29 -0500, tma...@trueprobity.com wrote: > I have not been able to find an example of the AFFTDN filter implemented and > working. Based on other examples I tried this command line code. > > ffmpeg -i C:\Media\test.wav afftdn="'nt=w':om='o'" C:\media\test_clean.wav We

[FFmpeg-user] Error implementing the AFFTDN filter with a noise type of w

2020-02-05 Thread tmason
Hello, I am trying to clean up an audio file which contains background noise using the AFFTDN filter with a noise type of white noise. I have not been able to find an example of the AFFTDN filter implemented and working. Based on other examples I tried this command line code. ffmpeg -i

Re: [FFmpeg-user] Error playing an rtsp stream with ffplay:

2020-01-18 Thread Paolo Meridiani
I've compiled 4.2.2, same error. I attach here the full log with the trace option if it can help any developer to give some hint on this. The issue is in the opening of the stream. (the streaming works nice with vlc and with onvifer on android)

Re: [FFmpeg-user] Error playing an rtsp stream with ffplay:

2020-01-16 Thread Paolo Meridiani
Thanks Carl for the answer. I've installed on ubuntu version 4.1.4 and I still get the same error: ffplay version n4.1.4 Copyright (c) 2003-2019 the FFmpeg developers built with gcc 7 (Ubuntu 7.4.0-1ubuntu1~18.04.1) configuration: --prefix= --prefix=/usr --disable-debug --disable-doc

Re: [FFmpeg-user] Error playing an rtsp stream with ffplay:

2020-01-16 Thread Carl Zwanzig
On 1/16/2020 2:02 AM, Paolo Meridiani wrote: ffplay version 3.4.6-0ubuntu0.18.04.1 Copyright (c) 2003-2019 the FFmpeg That version is quite old and not officially supported here. Please get a current version and try with that. z! ___ ffmpeg-user

[FFmpeg-user] Error playing an rtsp stream with ffplay:

2020-01-16 Thread Paolo Meridiani
The stream is from a camera (victure PC530) and works nicely with VLC: Looking more in detail: ffplay rtsp://XX-loglevel verbose ffplay version 3.4.6-0ubuntu0.18.04.1 Copyright (c) 2003-2019 the FFmpeg developers built with gcc 7 (Ubuntu 7.3.0-16ubuntu3) configuration: --prefix=/usr

Re: [FFmpeg-user] Error Encoding AAC to HLS Using ffmpeg

2019-12-02 Thread andrei ka
you don't need groups here, just make a master index.m3u8 with : index.m3u8 : # #EXTM3U #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=128000 index_low.m3u8 #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH= 256000 index_high.m3u8 # and ffmpeg -re -i aac_file -vn

[FFmpeg-user] Error Encoding AAC to HLS Using ffmpeg

2019-12-02 Thread Ashish Jha
I want to encode an AAC formatted audio file into multi bitrate HLS using ffmpeg: fmpeg -re -i input.aac -b:a:0 128k -af volume=6dB -ar 48000 -hls_time 20 -vn -hls_list_size 0 -b:a:1 256k -af volume=6dB -ar 48000 -hls_time 20 -vn -hls_list_size 0 -map 0:a -map 0:a -f hls -var_stream_map

Re: [FFmpeg-user] error in Codec AVOption b

2019-11-13 Thread Carl Eugen Hoyos
> Am 14.11.2019 um 03:08 schrieb Michele Salerno : > > I have this command: > > ffmpeg -y -hide_banner -threads 8 -hwaccel nvdec > -hwaccel_output_format cuda -i INPUT.mp4 \ > -vf scale_cuda=-1:360 -c:v h264_nvenc -rc vbr -minrate 400k -maxrate > 1500k -bufsize 1500k \ > -acodec aac -strict

[FFmpeg-user] error in Codec AVOption b

2019-11-13 Thread Michele Salerno
I have this command: ffmpeg -y -hide_banner -threads 8 -hwaccel nvdec -hwaccel_output_format cuda -i INPUT.mp4 \ -vf scale_cuda=-1:360 -c:v h264_nvenc -rc vbr -minrate 400k -maxrate 1500k -bufsize 1500k \ -acodec aac -strict experimental -ar 44100 -b:a 64k \ -preset slow -flags +loop -cmp

Re: [FFmpeg-user] error compiling ffmpeg ERROR: cuda requested, but not all dependencies are satisfied: ffnvcodec

2019-10-22 Thread pasha-19
The ffnvcodec problem appears to be resolved. However I now have a problem with nvcc that according to some webpages is not compatible with msys2/mingw will need to consider compiling using visual studio where I have had setup problems (if I remember correctly being unable to find visual studio

Re: [FFmpeg-user] error compiling ffmpeg ERROR: cuda requested, but not all dependencies are satisfied: ffnvcodec

2019-10-21 Thread pasha-19
That fixed the error you found but not the error I reported. Thanks for solving a problem I had not yet identified. -- Sent from: http://www.ffmpeg-archive.org/ ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] error compiling ffmpeg ERROR: cuda requested, but not all dependencies are satisfied: ffnvcodec

2019-10-21 Thread Moritz Barsnick
On Mon, Oct 21, 2019 at 16:42:16 -0500, pasha-19 wrote: > $ pkg-config --list-all > ... > ffnvcodec ffnvcodec - FFmpeg version of Nvidia Codec SDK headers [...] > ERROR: cuda requested, but not all dependencies are satisfied: ffnvcodec That's peculiar, because config.log says ffnvcodec was

Re: [FFmpeg-user] error compiling ffmpeg ERROR: cuda requested, but not all dependencies are satisfied: ffnvcodec

2019-10-21 Thread pasha-19
Tried the pkg-config before and after the configure. The pkg-config found ffnvcodec both before and after however it still is reported as not found in the configure process. $ cd /d/dev/cpp $ PREFIX="ffmpeg" $ PKG_CONFIG_PATH="/usr/local/lib/pkgconfig" $ pkg-config --list-all ... ffnvcodec

Re: [FFmpeg-user] error compiling ffmpeg ERROR: cuda requested, but not all dependencies are satisfied: ffnvcodec

2019-10-21 Thread pasha-19
Additional information -- I learned to use pkg-config --list-all note the results below ffnvcodec was found. using MSYS2 mingw 64-bit I generated the following: $ cd /d/dev/cpp $ PREFIX="ffmpeg" $ PKG_CONFIG_PATH="/usr/local/lib/pkgconfig" $ pkg-config --list-all ... ffnvcodec

Re: [FFmpeg-user] error in make test

2019-10-03 Thread Carl Eugen Hoyos
> Am 04.10.2019 um 02:31 schrieb S Andreason : > > extra-ldflags=-L/usr/lib/i386-linux-gnu The test is inherently broken on i386 (it tests for identical float behaviour which is not guaranteed), you can wait until it gets fixed or test --extra-cflags=-msse2 (There is a setting that changes

Re: [FFmpeg-user] error in make test

2019-10-03 Thread S Andreason
Carl Eugen Hoyos wrote: Am Sa., 28. Sept. 2019 um 21:01 Uhr schrieb S Andreason : TESTlavf-gray.fits --- ./tests/ref/lavf/gray.fits2019-06-30 20:40:14.0 -0700 +++ tests/data/fate/lavf-gray.fits2019-09-28 10:42:08.360464015 -0700 @@ -1,3 +1,3 @@

Re: [FFmpeg-user] ERROR RTSP - TIMESTAMPS ARE UNSET

2019-09-29 Thread Alejandro Escudero
to: Re: [FFmpeg-user] ERROR RTSP - TIMESTAMPS ARE UNSET Am Fr., 27. Sept. 2019 um 01:03 Uhr schrieb Alejandro Escudero : > I am getting an RTSP stream from a DLink camera but I am getting this error: > Timestamps > are unset in a packet for stream 0. This is deprecated and will stop working

Re: [FFmpeg-user] error in make test

2019-09-29 Thread Carl Eugen Hoyos
Am Sa., 28. Sept. 2019 um 21:01 Uhr schrieb S Andreason : > TESTlavf-gray.fits > --- ./tests/ref/lavf/gray.fits2019-06-30 20:40:14.0 -0700 > +++ tests/data/fate/lavf-gray.fits2019-09-28 10:42:08.360464015 -0700 > @@ -1,3 +1,3 @@ > d76b46a5a336b56f73451817cdf3897c

Re: [FFmpeg-user] ERROR RTSP - TIMESTAMPS ARE UNSET

2019-09-29 Thread Carl Eugen Hoyos
Am Fr., 27. Sept. 2019 um 01:03 Uhr schrieb Alejandro Escudero : > I am getting an RTSP stream from a DLink camera but I am getting this error: > Timestamps > are unset in a packet for stream 0. This is deprecated and will stop working > in the future. > Fix your code to set the timestamps

[FFmpeg-user] ERROR RTSP - TIMESTAMPS ARE UNSET

2019-09-29 Thread Alejandro Escudero
Hi I am getting an RTSP stream from a DLink camera but I am getting this error: Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly This is the command: (I also tried adding -fflags +genpts but i

Re: [FFmpeg-user] error in make test

2019-09-29 Thread Carl Eugen Hoyos
> Am 28.09.2019 um 21:01 schrieb S Andreason : > > Hi, I have current ffmpeg by git, updated yesterday, running on Debian > desktop. > > I was successful in configure, make, and make install, but when trying to get > ass to work (not the issue for this email) I ran make test and it stopped

Re: [FFmpeg-user] error in make test

2019-09-28 Thread Carl Eugen Hoyos
Am Sa., 28. Sept. 2019 um 21:01 Uhr schrieb S Andreason : > > Hi, I have current ffmpeg by git, updated yesterday, running on Debian > desktop. > > I was successful in configure, make, and make install, but when trying > to get ass to work (not the issue for this email) I ran make test and it Not

[FFmpeg-user] error in make test

2019-09-28 Thread S Andreason
Hi, I have current ffmpeg by git, updated yesterday, running on Debian desktop. I was successful in configure, make, and make install, but when trying to get ass to work (not the issue for this email) I ran make test and it stopped with this error, and it looks reportable to me, and I can't

[FFmpeg-user] ERROR RTSP - TIMESTAMPS ARE UNSET

2019-09-26 Thread Alejandro Escudero
Hi I am getting an RTSP stream from a DLink camera but I am getting this error: Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly This is the command: (I also tried adding -fflags +genpts but i

Re: [FFmpeg-user] Error in audiotoolboxenc.o when compiling on OS X 10.6.8

2019-08-12 Thread Jonathan Alland
> I wonder what you need this binary for. Nothing so important! I have a deep fondness for Snow Leopard, and I'm trying to see how much of the software I regularly use can be made to work. Static binaries are also just a strong preference. > Use --disable-audiotoolbox (and possibly

Re: [FFmpeg-user] Error in audiotoolboxenc.o when compiling on OS X 10.6.8

2019-08-12 Thread Moritz Barsnick
On Mon, Aug 12, 2019 at 00:25:14 +0200, Carl Eugen Hoyos wrote: > Am Mo., 12. Aug. 2019 um 00:16 Uhr schrieb Jonathan Alland > : > > I am trying to compile a build of ffmpeg on macOS X 10.6.8. My hope is to > > eventually get a > > statically linked binary which is also Snow Leopard compatible.

Re: [FFmpeg-user] Error in audiotoolboxenc.o when compiling on OS X 10.6.8

2019-08-11 Thread Carl Eugen Hoyos
Am Mo., 12. Aug. 2019 um 00:16 Uhr schrieb Jonathan Alland : > I am trying to compile a build of ffmpeg on macOS X 10.6.8. My hope is to > eventually get a > statically linked binary which is also Snow Leopard compatible. I wonder what you need this binary for. > I am using the following

[FFmpeg-user] Error in audiotoolboxenc.o when compiling on OS X 10.6.8

2019-08-11 Thread Jonathan Alland
Hello! I am trying to compile a build of ffmpeg on macOS X 10.6.8. My hope is to eventually get a statically linked binary which is also Snow Leopard compatible. I am using the following options: ./configure --cc=/usr/bin/clang --prefix=/opt/ffmpeg --extra-version=tessus --enable-avisynth

Re: [FFmpeg-user] Error psz_cqm_file=8-0-8

2019-07-16 Thread Ted Park
> I would like to know the difference between psz_cqm_file and cqmfile. This is more of an x264 question than an ffmpeg one, but if I were to guess they changed the parameter name at some point because, like, what does psz_cqm_file even stand for, right?

Re: [FFmpeg-user] Error psz_cqm_file=8-0-8

2019-07-16 Thread abhishek punjabi
Dear Sir, As referred by Moritz below command is working fine for FFmpeg 4.1 -x264opts cqmfile=filename I would like to know the difference between psz_cqm_file and cqmfile. From notes I got /* JM format reads the external quantization matrix file in JM format, automatically ignores other -cqm

Re: [FFmpeg-user] Error psz_cqm_file=8-0-8

2019-07-15 Thread Moritz Barsnick
On Mon, Jul 15, 2019 at 18:57:00 +0530, abhishek punjabi wrote: > I want to use the above parameter for FFmpeg 4.1 > Its working fine in FFmpeg 2.6 version but not supported by 4.1 version. > Please provide a solution and asap to include parameter in > psz_cqm_file=8-0-8. As Ted pointed out, that

Re: [FFmpeg-user] Error psz_cqm_file=8-0-8

2019-07-15 Thread Ted Park
> Dear Sir, > I want to use the above parameter for FFmpeg 4.1 > Its working fine in FFmpeg 2.6 version but not supported by 4.1 version. > Please provide a solution and asap to include parameter in > psz_cqm_file=8-0-8. Does that mean you have a file named "8-0-8”? In that case maybe try

[FFmpeg-user] Error psz_cqm_file=8-0-8

2019-07-15 Thread abhishek punjabi
Dear Sir, I want to use the above parameter for FFmpeg 4.1 Its working fine in FFmpeg 2.6 version but not supported by 4.1 version. Please provide a solution and asap to include parameter in psz_cqm_file=8-0-8. Thanks and Regards *Abhishek Punjabi,* *Contact : +91 8849272165*

Re: [FFmpeg-user] Error while decoding stream

2019-04-26 Thread Moritz Barsnick
On Fri, Apr 26, 2019 at 13:23:14 +0300, Ivan Kirillov wrote: > https://i.gyazo.com/a5beb3f0798b7423d2bb7e773b0521c1.png > here is an outpot after start (You should copy the text from the console into the email instead of creating a screenshot.) You are using a very old version of ffmpeg. Please

Re: [FFmpeg-user] Error while decoding stream

2019-04-26 Thread Ivan Kirillov
https://i.gyazo.com/a5beb3f0798b7423d2bb7e773b0521c1.png here is an outpot after start 26.04.2019 1:01, Carl Zwanzig пишет: On 4/25/2019 5:21 AM, Ivan Kirillov wrote: pls explain to me how can i fix this ? pls (please) post the command output; it's OK to remove some duplicate lines but

Re: [FFmpeg-user] Error while decoding stream

2019-04-25 Thread Carl Zwanzig
On 4/25/2019 5:21 AM, Ivan Kirillov wrote: pls explain to me how can i fix this ? pls (please) post the command output; it's OK to remove some duplicate lines but people need to know about the config, streams, etc. z! ___ ffmpeg-user mailing list

[FFmpeg-user] Error while decoding stream

2019-04-25 Thread Ivan Kirillov
hey guys im trying to get stream from url then decode it and sent to my local rtmp: ffmpeg -i "`streamlink --stream-url --default-stream 720p https://www.twitch.tv/mystream`; -f alsa -f flv -ac 2 -ar 44100 -vcodec libx264 -g 60 -keyint_min 30 -b:v 3000k -minrate 3000k -maxrate 3000k -pix_fmt

Re: [FFmpeg-user] Error message when combining -vf and -af in command line

2019-03-13 Thread Christian Ebert
* Kieran O'Leary on Wednesday, March 13, 2019 at 15:27:21 +: It appears that this is ticket 7712: https://trac.ffmpeg.org/ticket/7712 Ah, right, for some reaseon I didn't catch that when searching the bug tracker. and it was introduced here:

Re: [FFmpeg-user] Error message when combining -vf and -af in command line

2019-03-13 Thread Kieran O'Leary
It appears that this is ticket 7712: https://trac.ffmpeg.org/ticket/7712 and it was introduced here: https://github.com/FFmpeg/FFmpeg/commit/301cee61fa61c55b1c178ebfbc590872e8b033e6 as an attempt to fix an existing bug: https://trac.ffmpeg.org/ticket/4184 Best, Kieran.

[FFmpeg-user] Error message when combining -vf and -af in command line

2019-03-13 Thread Christian Ebert
Hi, Using -vf and -af in 1 command results in this error message: Only '-vf scale' read, ignoring remaining -vf options: Use ',' to separate filters Only '-af aresample' read, ignoring remaining -af options: Use ',' to separate filters The message does not have any consequences. Happens

Re: [FFmpeg-user] Error while building recent FFmpeg from source

2019-03-07 Thread Lou Logan
On Thu, Mar 7, 2019, at 4:16 AM, Venkateswaran.S wrote: > Hi Team, > > I'm building FFmpeg from below github source. > https://github.com/FFmpeg/FFmpeg.git > > Configure script : > ./configure --enable-gpl --enable-version3 --disable-static --enable-shared > --enable-small --enable-avisynth

Re: [FFmpeg-user] Error while building recent FFmpeg from source

2019-03-07 Thread Moritz Barsnick
On Thu, Mar 07, 2019 at 14:38:30 +0100, Paul B Mahol wrote: > On 3/7/19, Venkateswaran.S wrote: > > I'hv libmysofa0 latest version - 0.6, also I've installed libmysofa-dev and > > libmysofa-utils. I'm using Ubuntu 18.04 OS. > > > > No you are not using latest version. In other words, that API

Re: [FFmpeg-user] Error while building recent FFmpeg from source

2019-03-07 Thread Paul B Mahol
On 3/7/19, Venkateswaran.S wrote: > I'hv libmysofa0 latest version - 0.6, also I've installed libmysofa-dev and > libmysofa-utils. I'm using Ubuntu 18.04 OS. > No you are not using latest version. > On Thu, Mar 7, 2019 at 6:51 PM Paul B Mahol wrote: > >> On 3/7/19, Venkateswaran.S wrote: >> >

Re: [FFmpeg-user] Error while building recent FFmpeg from source

2019-03-07 Thread Venkateswaran.S
I'hv libmysofa0 latest version - 0.6, also I've installed libmysofa-dev and libmysofa-utils. I'm using Ubuntu 18.04 OS. On Thu, Mar 7, 2019 at 6:51 PM Paul B Mahol wrote: > On 3/7/19, Venkateswaran.S wrote: > > Hi Team, > > > > I'm building FFmpeg from below github source. > >

Re: [FFmpeg-user] Error while building recent FFmpeg from source

2019-03-07 Thread Paul B Mahol
On 3/7/19, Venkateswaran.S wrote: > Hi Team, > > I'm building FFmpeg from below github source. > https://github.com/FFmpeg/FFmpeg.git > > Configure script : > ./configure --enable-gpl --enable-version3 --disable-static --enable-shared > --enable-small --enable-avisynth --enable-chromaprint

[FFmpeg-user] Error while building recent FFmpeg from source

2019-03-07 Thread Venkateswaran.S
Hi Team, I'm building FFmpeg from below github source. https://github.com/FFmpeg/FFmpeg.git Configure script : ./configure --enable-gpl --enable-version3 --disable-static --enable-shared --enable-small --enable-avisynth --enable-chromaprint --enable-frei0r --enable-gmp --enable-gnutls

Re: [FFmpeg-user] Error read format to my program.

2019-02-24 Thread Carl Eugen Hoyos
2019-02-22 17:19 GMT+01:00, ABDALLAH Moussa : > I don't know if it's the good place to ask that but I have a problem with my > program. It's a program to try to save a stream video from an ip camera to a > file. When I try to execute my program this is the error that's returns on > the console :

Re: [FFmpeg-user] Error read format to my program.

2019-02-24 Thread ABDALLAH Moussa
Up > Le 22 févr. 2019 à 17:19, ABDALLAH Moussa a > écrit : > > Hello, > > I don't know if it's the good place to ask that but I have a problem with my > program. It's a program to try to save a stream video from an ip camera to a > file. When I try to execute my program this is the error

[FFmpeg-user] Error read format to my program.

2019-02-22 Thread ABDALLAH Moussa
Hello, I don't know if it's the good place to ask that but I have a problem with my program. It's a program to try to save a stream video from an ip camera to a file. When I try to execute my program this is the error that's returns on the console : [root@localhost Téléchargements]#

Re: [FFmpeg-user] error with hero 7 white gopro audio stream

2018-12-27 Thread Harry Levinson
It seems that even though there is an error message, the audio stream is copied to the output file with no perceptible loss. I thought I had a different outcome before I posted. As far as hardware acceleration (hwaccel) is concerned, I found a couple of useful links and have successfully used my

Re: [FFmpeg-user] Error with mp4 files moov atom (\moov\trak\mdia\minf\stbl\sgpd)

2018-12-13 Thread Karen Norton
On Thu, Dec 13, 2018 at 3:40 PM Moritz Barsnick wrote: > Hi Karen, > > On Thu, Dec 13, 2018 at 15:04:15 -0500, Karen Norton wrote: > > > I only see the error when opening the output files with MP4 Inspector > > otherwise the files play fine (ex: in VLC) and show no issues in > > mediainfo. > >

Re: [FFmpeg-user] Error with mp4 files moov atom (\moov\trak\mdia\minf\stbl\sgpd)

2018-12-13 Thread Moritz Barsnick
Hi Karen, On Thu, Dec 13, 2018 at 15:04:15 -0500, Karen Norton wrote: > I only see the error when opening the output files with MP4 Inspector > otherwise the files play fine (ex: in VLC) and show no issues in > mediainfo. So basically, it's not an issue at all, *except* for MP4 Inspector? > I

Re: [FFmpeg-user] Error compiling ffmpeg 4.1 with librtmp

2018-11-19 Thread Dmitry Menshikov
Hi! Check the following solution for the similar issue. https://stackoverflow.com/questions/12629042/g-4-6-real-error-unrecognized-option-r пн, 19 нояб. 2018 г., 23:54 Eduardo Alarcón ealarc...@gmail.com: > Hello, > i'm trying to compile ffmpeg various libs, including librtmp but i have > been

[FFmpeg-user] Error compiling ffmpeg 4.1 with librtmp

2018-11-19 Thread Eduardo Alarcón
Hello, i'm trying to compile ffmpeg various libs, including librtmp but i have been unable to. I have done it before, but this is a new system The last error is always ERROR: librtmp not found using pkg-config So i checked the config.log and the last lines are: require_pkg_config librtmp librtmp

[FFmpeg-user] Error when downloading video via m3u8 playlist: Application provided duration...

2018-10-31 Thread Peter Wetz
I use the following command to download an m3u8-playlist. ffmpeg.exe -i " http://7dcdn.ivideo.sina.com.cn/7d.ivideo.sina.com.cn/app/record/subIndex/live_1713429_0_24864_1480654200_1480680600_web_sina_sd.m3u8?fid=1-1540912585486-1221-d4008b60bef4=1713429_null_1540978916089_3510_9060; -c copy

Re: [FFmpeg-user] Error Message not Understood - Help Please

2018-07-02 Thread Moritz Barsnick
On Mon, Jul 02, 2018 at 23:14:51 +0100, Budge wrote: > I still do not understand, however, why I am getting the segmentation > fault from AtomicParsley but will try again after running ffmpeg > using -vn. Is AtomicParsley not segfaulting for you on each and every file? Even though it properly

Re: [FFmpeg-user] Error Message not Understood - Help Please

2018-07-02 Thread Carl Eugen Hoyos
2018-07-03 0:14 GMT+02:00, Budge : > I still do not understand, however, why I am getting the > segmentation fault from AtomicParsley Not sure if anybody here will know the answer... Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] Error Message not Understood - Help Please

2018-07-02 Thread Budge
On 02/07/18 18:19, Carl Eugen Hoyos wrote: 2018-07-02 17:57 GMT+02:00, Budge : If I run AtomicParsley I also get a segmentation fault reported. I read through my previous notes and found the moov atom issue and, as before, putting this at the front of the file fixed the problem So your issue

Re: [FFmpeg-user] Error Message not Understood - Help Please

2018-07-02 Thread Carl Eugen Hoyos
2018-07-02 17:57 GMT+02:00, Budge : > If I run AtomicParsley I also get a segmentation fault reported. > I read through my previous notes and found the moov atom issue and, as > before, putting this at the front of the file fixed the problem So your issue is already solved? >

[FFmpeg-user] Error Message not Understood - Help Please

2018-07-02 Thread Budge
Running OpenSUSE Leap 42.3 and ffmpeg 3.4.2 and showing my ignorance here: I have a downloaded file which plays on VLC or SMPlayer but will not play on a Linn DS device and tends to crash my android control point BubbleDS Next. I had a similar issue a while ago which I eventually guessed was

Re: [FFmpeg-user] error: 'x265_api_get' undeclared (first use in this function)

2018-06-11 Thread lx
Thank you. I fix it. 2018-06-11 11:55 GMT+08:00 Lou Logan : > On Sun, Jun 10, 2018, at 5:53 PM, lx wrote: > > hg clone https://bitbucket.org/multicoreware/x265 > > cd x265 > > hg checkout 0.8 > > According to the FFmpeg configure file: > > X265_BUILD >= 68 > > The x265 0.8 tag is probably too

Re: [FFmpeg-user] error: 'x265_api_get' undeclared (first use in this function)

2018-06-10 Thread Lou Logan
On Sun, Jun 10, 2018, at 5:53 PM, lx wrote: > hg clone https://bitbucket.org/multicoreware/x265 > cd x265 > hg checkout 0.8 According to the FFmpeg configure file: X265_BUILD >= 68 The x265 0.8 tag is probably too old, so reset to the "default" branch and avoid checking out old, unsupported

[FFmpeg-user] error: 'x265_api_get' undeclared (first use in this function)

2018-06-10 Thread lx
hi all: I compile FFmpeg which support x265 by these steps: sudo apt-get install mercurial cmake cmake-curses-gui build-essential # Note: if the packaged yasm is older than 1.2, you must download yasm-1.2 and build it hg

Re: [FFmpeg-user] Error: librtmp not found using pkg-config

2018-05-20 Thread Reindl Harald
Am 20.05.2018 um 22:14 schrieb Ken's CCCOMM Email: > Please help me understand why I got this error when Downloading & compiling > FFMPEG (Latest Version). --enable-librtmp remove it or install the devel-package > I'm new to this so I don't know how to "Include the log file >

[FFmpeg-user] Error: librtmp not found using pkg-config

2018-05-20 Thread Ken's CCCOMM Email
Please help me understand why I got this error when Downloading & compiling FFMPEG (Latest Version). I'm new to this so I don't know how to "Include the log file "ffbuild/config.log"". Please advise if you need this and how I can get it for you. Thank you in advance. Ken Thomas

Re: [FFmpeg-user] ERROR: rubberband >= 1.8.1 not found using pkg-config

2018-05-14 Thread 桃源老師
Hello, Moritz-san, > 2018/05/15 午前0:10、Moritz Barsnick のメール: > > On Mon, May 14, 2018 at 23:50:22 +0900, 桃源老師 wrote: >> ld: symbol(s) not found for architecture x86_64 >> clang: error: linker command failed with exit code 1 (use -v to see >> invocation) >> ERROR: rubberband >=

Re: [FFmpeg-user] ERROR: rubberband >= 1.8.1 not found using pkg-config

2018-05-14 Thread Moritz Barsnick
On Mon, May 14, 2018 at 23:50:22 +0900, 桃源老師 wrote: > ld: symbol(s) not found for architecture x86_64 > clang: error: linker command failed with exit code 1 (use -v to see > invocation) > ERROR: rubberband >= 1.8.1 not found using pkg-config This librubberband has a dependency on libvdsp (or

[FFmpeg-user] ERROR: rubberband >= 1.8.1 not found using pkg-config

2018-05-14 Thread 桃源老師
Hello ffmpeg experts, I can't build ffmpeg with rubberband. The error appeared on console is "ERROR: rubberband >= 1.8.1 not found using pkg-config". I'm on macOS High Sierra. Here's seems to error portion of ffbuild/config.log. gcc -L/Volumes/ffmpeg_compile/lib -lc++

Re: [FFmpeg-user] ERROR: x265 not found using pkg-config

2018-05-10 Thread Lou Logan
On Wed, May 9, 2018, at 11:13 AM, Marcus Monroe wrote: > Marcus Monroe has shared a OneDrive for Business file with you. To view > it, click the link below. > > > >

[FFmpeg-user] ERROR: x265 not found using pkg-config

2018-05-10 Thread Marcus Monroe
Marcus Monroe has shared a OneDrive for Business file with you. To view it, click the link below.

Re: [FFmpeg-user] ERROR: libfdk_aac not found

2018-04-15 Thread Carl Eugen Hoyos
2018-04-15 15:25 GMT+02:00, La poste : > git clone https://github.com/FFmpeg/FFmpeg.git > > cd FFmpeg > > ./configure --prefix=/usr/local --arch=armel --target-os=linux > --enable-omx-rpi --enable-nonfree --enable-gpl --enable-libfdk-aac > --enable-mmal

Re: [FFmpeg-user] ERROR: libfdk_aac not found

2018-04-15 Thread Gralfus
Did you install libfdk_aac first before configuring ffmpeg? In my version of linux, that is done with sudo apt-get install libfdk-aac-dev Or you can follow the guide for setting up ffmpeg which includes how to install the options you like: https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

Re: [FFmpeg-user] ERROR: libfdk_aac not found

2018-04-15 Thread Reindl Harald
Am 15.04.2018 um 15:25 schrieb La poste: > Hi ! I was installing ffmpeg with this page : > https://github.com/KhaosT/homebridge-camera-ffmpeg/wiki/Raspberry-PI > > > git clone https://github.com/FFmpeg/FFmpeg.git >

[FFmpeg-user] ERROR: libfdk_aac not found

2018-04-15 Thread La poste
Hi ! I was installing ffmpeg with this page : https://github.com/KhaosT/homebridge-camera-ffmpeg/wiki/Raspberry-PI git clone https://github.com/FFmpeg/FFmpeg.git cd FFmpeg

[FFmpeg-user] Error when trying to compile FFmpeg with libaom

2018-03-30 Thread Victor Carneiro Fardim
When trying to build the latest Git build of FFmpeg with libaom enabled, I'm getting the following error: CC libavcodec/libaomdec.o In file included from ./libavutil/common.h:105:0 , from libavcodec/libaomdec.c:29 : ./config.h:38:0: warning: "ARCH_X86" redefined

Re: [FFmpeg-user] Error with vmaf: libvmaf not found

2018-03-14 Thread Carl Eugen Hoyos
2018-03-14 14:17 GMT+01:00, Pinar Akyazi : > ERROR: libvmaf >= 0.6.2 not found using pkg-config > > If you think configure made a mistake, make sure you are using the latest > version from Git. If the latest version fails, report the problem to the > ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] Error with vmaf: libvmaf not found

2018-03-14 Thread Reindl Harald
Am 14.03.2018 um 14:17 schrieb Pinar Akyazi: Hello, I’m trying to run vmaf library in ffmpeg. I’ve pulled the latest version of ffmpeg from GitHub today. My system specs are below, i.e., using uname -a Linux grebsrv5 4.2.0-27-generic #32~14.04.1-Ubuntu SMP Fri Jan 22 15:32:26 UTC 2016

<    1   2   3   4   5   >