-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
19 lines (12 loc) · 703 Bytes
/
README
File metadata and controls
19 lines (12 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Video and audio file fetcher (with optional conversion)
This is a simple wrapper around the quvi library. The quvi library is used to get the media (video or audio) file url associated with a web site url (like youtube).
Dependencies:
- libquvi
- curl and ffmpeg installed (and in your $PATH)
Usage examples:
Download a video from youtube, saving it in it's original format (probably .webm or .flv):
$ ./vidfetch "http://www.youtube.com/watch?v=q7uyKYeGPdE"
Download a video from youtube and convert it to .avi:
$ ./vidfetch -avi "http://www.youtube.com/watch?v=q7uyKYeGPdE"
Extract the music from a youtube video, saving it as mp3:
$ ./vidfetch -mp3 "http://www.youtube.com/watch?v=q7uyKYeGPdE"