-
-
Notifications
You must be signed in to change notification settings - Fork 45
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
x264 upgrade has broken ffmpeg #49
Comments
This should be solved once #48 is merged, at least for 4.0. Until then, a workaround is to downgrade x264 in your environment. |
#48 is merged now. |
In case you had the same issue, here's the clean command: # ffmpeg 3.4.1
conda install ffmpeg x264=20131218 -c conda-forge
# ffmpeg 4
conda install x264=='1!152.20180717' ffmpeg=4.0.2 -c conda-forge |
@victorhcm x264=='1!152.*' should also work with the latest build of ffmpeg 3.4.1, we worked hard to ensure that is the case. Try this: $ conda create -n testfff conda-forge::ffmpeg=3.4.1
$ conda activate testfff
$ conda list | grep -E "ffm|x26"
# ffmpeg 3.4.1 hf82bc7d_4 conda-forge
# x264 1!152.20180717 h470a237_0 conda-forge
$ ffmpeg
# works! I actually would discourage installing |
@sdvillal I cannot confirm this:
|
@victorhcm The code continuously stuck here, at least for half an hour: |
Problem solved by
|
I just had a similar problem to the one stated in the first item in this thread. |
Using latest package versions works fine too:
|
If you currently install
ffmpeg=4.0
, the resulting binary (on Linux) gives:It seems that the packages insufficiently version the
x264
dependency.The text was updated successfully, but these errors were encountered: