Aboutumph is a command line tool for parsing Youtube feeds. It can parse playlists, favorite lists, and user upload lists. umph prints the found URLs to the standard output, each URL separated with a newline. It can be used to select the feed items by using the "--interactive" prompt. Synopsisumph [-q] [-i] [-a] [--csv | --json] [-t <type>] [<playlist_id> | <username>] Examples# Fetch and parse playlist "AAF3A1D0CA1E304F".
umph AAF3A1D0CA1E304F
# Same as above but get the items 11-20 from the playlist.
umph -s 11 -m 10 AAF3A1D0CA1E304F
# Similar but get all of the items in the playlist.
umph -a AAF3A1D0CA1E304F
# Fetch and parse favorites for user "foo".
umph -t f foo
# Fetch and parse uploads for user "foo".
umph -t u foo
# Download the playlist items using cclive(1).
umph AAF3A1D0CA1E304F | cclive
# Same but choose which videos to download.
umph -i AAF3A1D0CA1E304F | cclive gitwebSee also
|