I am trying to install openh264 to use with opencv on a jupyter notebook. I am working from the anaconda prompt within an environment on Windows 10 Pro. I am using the recommended channels found on the Anaconda website.
For every and each of them, it returns
Collecting package metadata (repodata.json): done
Solving environment: failedPackagesNotFoundError: The following packages are not available from current channels:
- openh264Current channels:
- https://conda.anaconda.org/conda-forge/win-64
- https://conda.anaconda.org/conda-forge/noarch
- https://repo.anaconda.com/pkgs/main/win-64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/r/win-64
- https://repo.anaconda.com/pkgs/r/noarch
- https://repo.anaconda.com/pkgs/msys2/win-64
- https://repo.anaconda.com/pkgs/msys2/noarchTo search for alternate channels that may provide the conda package you're looking for, navigate to https://anaconda.org and use the search bar at the top of the page.
I have also tried adding one channel, conda-forge, to the list of default channels:
conda config --append channels conda-forge
and then trying installation with
conda install openh264
but I get the same result.
A pip installation
pip install openh264
returns
Collecting openh264 ERROR: Could not find a version that satisfies the requirement openh264 (from versions: none) ERROR: No matching distribution found for openh264
I am new to video and audio encoding and processing, but I am under the impression that OpenH264 is widely used. Any idea of what might be happening?