Skip to content

Instantly share code, notes, and snippets.

@toolness
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save toolness/3b5f9c48aa0d98bf4107 to your computer and use it in GitHub Desktop.

Select an option

Save toolness/3b5f9c48aa0d98bf4107 to your computer and use it in GitHub Desktop.
A Dockerfile that makes it easy to convert youtube videos to mp3's
FROM ubuntu:14.04
MAINTAINER Atul Varma
RUN printf '\ndeb http://us.archive.ubuntu.com/ubuntu/ trusty multiverse' >> /etc/apt/sources.list
RUN printf '\ndeb http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse' >> /etc/apt/sources.list
RUN apt-get update
RUN apt-get install -y libav-tools libavcodec-extra-54 python python-pip
RUN pip install --upgrade youtube_dl
@toolness
Copy link
Author

This dockerfile has been superseded by https://github.com/toolness/youtube-to-mp3.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment