Skip to content
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

git clone v1.0.6 but build image for ubuntu 20.04 #34

Open
HuanyuZang opened this issue Aug 17, 2023 · 1 comment
Open

git clone v1.0.6 but build image for ubuntu 20.04 #34

HuanyuZang opened this issue Aug 17, 2023 · 1 comment

Comments

@HuanyuZang
Copy link

HuanyuZang commented Aug 17, 2023

Hi @LukasBommes @sfmt-auto

Thanks for you repo, this is very impressive. I'm using another repo https://github.com/LukasBommes/rtsp-streamsync/tree/master which is rely on this repo and that helps me to get synchronized frames from ip camera stream.

I'm trying to build a docker image which is based on ubuntu 20.04. So, I changed the Dockerfile of rtsp-streamsync repo

RUN cd $HOME && \
  git clone -b v0.0.0 https://github.com/LukasBommes/mv-extractor.git video_cap && \
  cd video_cap && \
  chmod +x install.sh && \
  ./install.sh

to

RUN cd $HOME && \
    git clone -b master https://github.com/LukasBommes/mv-extractor.git video_cap && \
    cd video_cap && \
    chmod +x install_ffmpeg.sh && \
    chmod +x install_opencv.sh && \
    ./install_ffmpeg.sh && \
    ./install_opencv.sh

cuz I wanna try if the docker image based on ubuntu 22.04 can be directly used on 20.04

but i got this error:
image (2)

I'm wondering does this repo provide docker image based on ubuntu 20.04 or do you have any suggestions on why is this error?

Any comments will be helpful!

Thank you!

@LukasBommes
Copy link
Owner

Hey @HuanyuZang,
I am aware that I neglected the RTSP streamsync project and that it requires some maintenance (at least upgrades of the dependencies). I can not promise anything since my time is quite limited. But I have it on my mind.

Regarding your concrete error, it says that wget and make are not installed. Have you installed wget and make in the Docker image (apt-get update && apt-get install -y wget make)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants