-
-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
segfault when probing any web video #121
Comments
Closing as duplicate of #135? |
I am also getting this error on a Heroku "Heroku-22" Ubuntu 22.04 server. Segmentation Fault every time when using a remote video URL. Downgrading the server to Ubuntu 20.04 solved the issue for me. It also works fine locally on my Mac. |
I started getting seg faults in my github actions when |
same issue on Red Hat Enterprise Linux release 8.5 |
I have re-install ffmpeg on server with yum and copy /usr/bin/ffprobe to node_modules. |
same problem using google firebase with node v18 |
Encountering this problem in Google Cloud Functions, 2nd Gen, with Node 20 on Ubuntu 22.04. Discouraging to see how long this seems to have been an issue for people. Given that people are reporting that this works with older versions of Node and/or Ubuntu, I'm wondering if this is more-so an issue with ffmpeg or Node (or both). Downgrading to older versions isn't an attractive long-term solution so I'm trying to do a little more digging to see if I can find any indication of the root of the problem here. Edit: Not surprised to find that this is also an issue when using https://github.com/joshwnj/ffprobe-static. |
Did you manage to solve this? or find a work around to it? |
Encountered this issue in AWS App Runner on node.js v18. Downgrading to 16 fixed the issue |
I encountered the same issue after upgrading to Node.js v18 and deploying it to AWS Elastic Beanstalk. However, it worked properly on my M3 chip MacBook during local development. I tried resolve it by manually installing ffmpeg and ffprobe, bypassing the use of this installer (@ffprobe-installer/ffprobe), but unfortunately, the problem persisted. As a workaround, I ended up using exiftool. Hope this issue can be fixed soon. Error message: |
Just ran into the same bug when using I found this conversation to solve without rolling back to older version of software. https://www.answeroverflow.com/m/1128826942766993490 Basically you don't need to use I removed these two lines of code and it worked fine in my git workflow: (ffmpeg is a
Original Error in git workflow:
|
Running
ffprobe
on a video URL always crashes. Running it on a local video file works fine, however.Example output of
/path/to/node_modules/@ffprobe-installer/linux-x64/ffprobe -i <any_video_url>
:The file format of the video seems to make no difference.
Meanwhile, running the system-installed ffprobe (I'm using Fedora 32) works just fine. It has the following version information:
This issue affects https://github.com/dyc3/opentogethertube (see dyc3/opentogethertube#297).
The text was updated successfully, but these errors were encountered: