You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey , im writing to run the docker (after building it)
with ./run-docker.sh main
then i do the process of mkdir build and cd build but then when i try to build
some dependencies from dev is missing on main like this line
RUN apt-get -y install qtcreator qtbase5-dev
after running this i can do cmake ..
but make -j will fail.
same questions goes for dev docker
ffempeg codec seems to be missing in the pip install processing ...
tried to add those 2 lines(
RUN sudo add-apt-repository ppa:jonathonf/ffmpeg-3
RUN sudo apt update && sudo apt -y install ffmpeg libav-tools x264 x265
)
to add support for codec but no luck.
if there is a way to run the dockers please notify, thanks alot.
The text was updated successfully, but these errors were encountered:
Hi @zobis2 . Sorry I dropped the ball on maintaining this for quite a while. I have just pushed 3915199 that fixes the build issues. I think ffmpeg is dragged in by pip as a dependency to av, but not 100% sure. There was a change in the recent av versions, which required a newer ffmpeg, so I fixed the av version in the dockerfile to be an older one for compatibility.
hey , im writing to run the docker (after building it)
with ./run-docker.sh main
then i do the process of mkdir build and cd build but then when i try to build
some dependencies from dev is missing on main like this line
RUN apt-get -y install qtcreator qtbase5-dev
after running this i can do cmake ..
but make -j will fail.
same questions goes for dev docker
ffempeg codec seems to be missing in the pip install processing ...
tried to add those 2 lines(
RUN sudo add-apt-repository ppa:jonathonf/ffmpeg-3
RUN sudo apt update && sudo apt -y install ffmpeg libav-tools x264 x265
)
to add support for codec but no luck.
if there is a way to run the dockers please notify, thanks alot.
The text was updated successfully, but these errors were encountered: