We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
You can compile vireo with docker ...
FROM ubuntu:16.04 RUN mkdir ytimoumi WORKDIR ./ytimoumi RUN apt-get update && apt-get -y install autoconf automake build-essential pkg-config git RUN apt-get -y install libpng-dev libjpeg-dev libfdk-aac-dev libvpx-dev libogg-dev libvorbis-dev libavformat-dev libavcodec-dev libavutil-dev libswscale-dev libx264-dev && export TERM=xterm && git clone https://github.com/twitter/vireo.git && git clone https://github.com/l-smash/l-smash.git && cd l-smash && git fetch --all --tags --prune && git checkout tags/v2.9.1 && ./configure --enable-shared && make && make install && ldconfig && cd ../vireo/vireo && export PREFIX=/usr/local/ && ./configure --prefix=$PREFIX && make && make install #33 && cd ../vireo/vireo && export PREFIX=/usr/local/ && ./configure --prefix=$PREFIX --enable-gpl && make && make install
#33 Build : docker build -t ytimoumi/vireo . #33 Run : docker run -it ytimoumi/vireo bash
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You can compile vireo with docker ...
FROM ubuntu:16.04
RUN mkdir ytimoumi
WORKDIR ./ytimoumi
RUN apt-get update && apt-get -y install autoconf automake build-essential pkg-config git
RUN apt-get -y install libpng-dev libjpeg-dev libfdk-aac-dev libvpx-dev libogg-dev libvorbis-dev libavformat-dev libavcodec-dev libavutil-dev libswscale-dev libx264-dev
&& export TERM=xterm
&& git clone https://github.com/twitter/vireo.git
&& git clone https://github.com/l-smash/l-smash.git
&& cd l-smash && git fetch --all --tags --prune && git checkout tags/v2.9.1 && ./configure --enable-shared && make && make install && ldconfig
&& cd ../vireo/vireo && export PREFIX=/usr/local/ && ./configure --prefix=$PREFIX && make && make install
#33 && cd ../vireo/vireo && export PREFIX=/usr/local/ && ./configure --prefix=$PREFIX --enable-gpl && make && make install
#33 Build : docker build -t ytimoumi/vireo .
#33 Run : docker run -it ytimoumi/vireo bash
The text was updated successfully, but these errors were encountered: