URI: 
       fosdem-stream - fosdem-client - FOSDEM commandline client
  HTML git clone git://bitreich.org/fosdem-client git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/fosdem-client
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
       ---
       fosdem-stream (158B)
       ---
            1 #!/bin/sh
            2 
            3 room="janson"
            4 if [ $# -gt 1 ];
            5 then
            6         room="$1"
            7 fi
            8 
            9 printf "https://stream.fosdem.org/${room}.m3u8\n"
           10 mpv "https://stream.fosdem.org/${room}.m3u8"
           11