Ffmpeg can't play https://live.webcamromania.ro/WR051/wrcam_051/playlist.m3u8. It gives an Input/Output error. With other links it works fine.
[tls # 0x7fb19f405bc0] IO Error: -9806 http://live.webcamromania.ro/WR051/wrcam_051/playlist.m3u8: Input/output error
This output means, that the TLS (https) is not accepted. This could be because the TLS of the webserver is invalid (seems here not the case) or because FFmpeg was compiled with and old / outdated SSL library.
Depending on your operating system, check for the latest updates of the SSL library and re-compile FFmpeg or check that you're using the latest version of FFmpeg.
For future questions show the full command you're using and also the full output. This helps us to give you more detailed information and better help.
Related
I am trying to generate a local hoogle database for its eventual use in a Haskell LSP with neovim.
Currently I'm running MacOS Monterey (12.6). I installed hoogle version 5.10.18.3 via cabal.
When running hoogle generate I get the following message:
$ hoogle generate
Starting generate
Reading Cabal... hoogle: Codec.Compression.Zlib: compressed data stream format error (incorrect header check)
Does anyone have an idea of how to proceed? Typing hoogle --help or hoogle generate --help does not give much information.
Try hoogle generate --download.
You probably had a corrupted download somehow. When hoogle attempts to re-generate the database it does not by default download. Hoogle documentation
Index all of Stackage
Run hoogle generate to generate an index for the current version of Stackage LTS. This command downloads the necessary inputs from the web as required and caches them (in the same directory as the database). To force redownloading pass --download. To demand no downloading, failing if the data cannot be found, pass --download=no. Links to the results will point at Hackage.
When I ran the --download flag, these files were fetched:
Downloading https://www.stackage.org/nightly/cabal.config... 1.81s
Downloading https://www.stackage.org/lts/cabal.config... 0.75s
Downloading https://raw.githubusercontent.com/haskell/haskell-platform/master/hptool/src/Releases2015.hs... 1.34s
Downloading https://hackage.haskell.org/packages/index.tar.gz... 3.67s
Downloading https://hackage.haskell.org/packages/hoogle.tar.gz... 6.89s
First thing I do after unpacking the SnowSQL Linux client is try to upgrade it. This has worked very well through at least v1.1.84. Today I downloaded v1.2.2, installed it, and got an error:
$ ~/bin/snowsql -Uv
No snowsql is available for download: url=https://sfc-repo.snowflakecomputing.com/snowsql, version=1.2
The error comes from this download. Has something changed? I get the same error even when I just try to use it with no options at all, or trying to connect by passing my account code and username.
The curl above was missing https and hence gave the wrong impression of 403 forbidden.
Some times due to a caching issue with the downloads it will not autoupgrade. There are two main components, one being bootstrap and the other one being the main snowsql component. The one you see the issue with is the main component (it is auto-downloaded when you run snowsql).
You can force new version download using snowsql -v 1.2.2 as an exmaple.
You can delete/move the .snowsql directory (~/.snowsql or ~/bin/.snowsql) to ensure a new main component version is downloaded by the new bootstrap.
You may also try using the newer versions for which the rpm is available at
https://sfc-repo.snowflakecomputing.com/snowsql/bootstrap/1.2/linux_x86_64/index.html
I noticed Snowflake has some weird firewall configs and similar errors can either happen consistently or intermittently.
The only option I'm aware of that can help if it happens consistently is to use --noup flag with your commands. This will not check for snowsql updates of course, but you can always manually download a newer version via your browser(with VPN is needed).
ffmpeg is giving me an error and I couldn't get much help googling it, besides a thread on ffmpeg mailing list dated 5 years ago which doesn't address the exact same problem.
No matter which ffmpeg version or build for windows I use, the error is always:
c:\>ffmpeg.exe
Invalid report file level
I've been using ffmpeg on the same computer for years and I've no idea where the problem started and how to debug it. Any help is welcome.
Notes:
No antivirus is running
ffmpeg.exe is on windows path
I've tried installing ffmpeg with choco install
ffmpeg but it reports the same error.
If the environment variable FFREPORT is set, ffmpeg will parse it to set loglevel for the verbosity of the log report and also its location. What you've encountered is a parse failure of that system variable.
So, either unset it using set FFREPORT= or set it to a different string. See -report under https://ffmpeg.org/ffmpeg.html#Generic-options
I recently installed ffmpeg version 0.8.5-4:0.8.5 on my Ubuntu Linux box.
When I execute "ffprobe -show_frames http://test.com/test.mp4" I get the following error:
Unrecognized option 'show_frames'
I have tried installed all sorts of ffmpeg dependent packages to fix this without any success.
Can someone help to resolve this error by telling me what I need to install exactly to fix this?
Thanks
You're using a crippled, fake version of "ffprobe" that originates from libav, not FFmpeg:
Ubuntu switched from FFmpeg to libav because the Debian/Ubuntu ffmpeg package maintainer is a libav developer. The intentional usage of the names "ffmpeg" and "ffprobe" for something not from FFmpeg was disappointing, and is misguiding to users and misrepresents the work of the FFmpeg developers. Also see Who can tell me the difference and relation between ffmpeg, libav, and avconv?
This bizarro "ffprobe" does not have the -show_frames option. You have three options:
Compile ffmpeg and/or ffprobe
Use Jon Severinsson's FFmpeg PPA
Use a static build of ffmpeg
All three methods will provide a real, working ffprobe. Use the static build if you're lazy.
Uninstalled the current version of ffmpeg(This was a static build downloaded from the ffmpeg site: http://ffmpeg.gusari.org/static/32bit/
show_frames option was deprecated in this version.
Download and installed the latest version from:http://www.ffmpeg.org/releases/ffmpeg-1.1.3.tar.bz2
hi i am using mac osx with mamp and i was wondering how i can link ffmpeg to php.ini so that i can use it with php exec() ?
the directory that ffmpeg got installed in is /users/sarmenhb/ffmpeg although i wish it didnt get installed here and got installed somewhere more appropriate, i sadly have no clue how to change the system to know where the new location is.
i read a few articles telling me to put something like extensions = /users/sarmenhb/ffmpeg/ffmpeg.so but looking in the directory i dont see a so file. i do see ffmpeg as a console app is that an so file itself?
thanks
ps: i did a test of ffmpeg in console from a flv file to a mp4 file and the audio didnt work on the new file. do i have to install something?
You can use the full path when executing ffmpeg:
exec("/users/sarmenhb/ffmpeg");