add --format help,list to ChangeLog
[clive.git] / examples / cliverc
blob4cbffa5b80d7e26a40c0574b364d759067827d22
2 # /usr/local/share/clive/config
3 # /usr/share/clive/config
4 # /etc/clive/config
5 # ~/.cliverc
6 # ~/.clive/config
7 # ~/.config/clive/config
8 # or "env CLIVE_CONFIG=/path/to/config/file clive".
10 # Path to quvi(1) with any additional args.
11 # Note that clive adds --quiet if it's not defined.
12 #   %u  Video URL
13 --quvi "/usr/bin/quvi %u"
15 # Path to a download command, this could be anything you choose,
16 # as long as you work out the details.
17 #   %u  Video download URL
18 #   %f  Full path to video file (to write to)
19 #   %n  File name (basename of the above)
20 --get-with "/usr/bin/curl -L -C - o %f %u"
22 # Play downloaded video when done.
23 #--exec "/usr/bin/vlc --quiet %f"
25 # Video filename format.
26 #   %t  Video title (after applying --regexp)
27 #   %i  Video ID
28 #   %h  Video host ID (req. quvi 0.2.8+)
29 #   %s  Video file suffix (parsed from server returned content-type)
30 #--filename-format "%t_%i.%s"
32 # Regexp to cleanup the video title before using it in a file name.
33 #--regexp "/(\\w)/g"