pub / yt2html

Fetches Youtube content via RSS and provides a chronological timeline
git clone https://src.jayvii.de/pub/yt2html.git
Home | Log | Files | Exports | Refs | README | RSS

README.md (866B)


      1 # yt2html
      2 
      3 Please send patches or remarks to <jayvii[AT]posteo[DOT]de>
      4 
      5 Fetches your YouTube "subscriptions" via RSS and provides all uploaded videos
      6 in a chronological order with infos about the Channel name, Video title,
      7 Upload date and the thumbnail.
      8 
      9 Thumbnails are directly embedded from YouTube (transfers the client's IP to
     10 Youtube). Upon clicking a thumbnail, embedds an iframe to youtube-nocookie.com
     11 in order to be able to watch the video right there.
     12 
     13 Videos are not(!) fetched periodically, but can be polled on-demand via the
     14 "reload" button. Fetching is done via an R-script ("yt.R").
     15 
     16 Subscriptions are added via the "url.csv" file, that includes AT LEAST one
     17 column names "url", which contains the YouTube RSS url to that channel.
     18 
     19 An example CSV file is included: "url.csv.sample", which you can use by doing:
     20 
     21 ```bash
     22 mv url.csv.sample url.csv
     23 ```