chrippa / livestreamer

Command-line utility that extracts streams from various services and pipes them into a video player of choice. No longer maintained, use streamlink or youtube-dl instead.
http://livestreamer.io/
BSD 2-Clause "Simplified" License
3.88k stars 582 forks source link

[Plugin Support Request] JFKLibrary.org #1632

Open AdamDanischewski opened 6 years ago

AdamDanischewski commented 6 years ago

https://www.jfklibrary.org/Asset-Viewer/DOPIN64xJUGRKgdHJ9NfgQ.aspx

$> livestreamer --version
livestreamer 1.12.2

$> livestreamer "https://www.jfklibrary.org/Asset-Viewer/DOPIN64xJUGRKgdHJ9NfgQ.aspx" 
error: No plugin can handle URL: https://www.jfklibrary.org/Asset-Viewer/DOPIN64xJUGRKgdHJ9NfgQ.aspx

It is Ooyala based, so I hope it's possible to quickly add it in. Thanks

Vangelis66 commented 6 years ago

Hello @AdamDanischewski

Livestreamer has become abandonware, i.e. is no longer supported by its original author... Requesting a new plugin here is, TBH, unrealistic... You may choose to do so instead at streamlink's tracker, which is a supported fork.

The video in your sample page is streamed over RTMP and in a browser does require you have installed and enabled Adobe Flash plugin (ActiveX in IE/ NPAPI in Firefox and similar/PPAPI in Chrome and similar). You can use various utilities to sniff the RTMP traffic and compose the necessary RTMPdump command to save it to disk - I used RTMPDump Helper, the exact command follows:

rtmpdump -r "rtmp://93.186.137.250/ondemand" -a "ondemand?_fcs_vhost=cp76677.edgefcs.net" -f "WIN 27,0,0,159" -W "https://player.ooyala.com/static/cacheable/81a5d1f8685c3118d6a8196cd04199ac/player_v2.swf" -p "https://www.jfklibrary.org/Asset-Viewer/DOPIN64xJUGRKgdHJ9NfgQ.aspx" -y "mp4:s/VsZzJ4MTos4sdNEwfo43HMybK-qppXvh/DOcJ-FxaFrRg4gtGEwOjEzYzowazvfui" -o "JFK Address at U.N. General Assembly, 25 September 1961.flv"
RTMPDump v2.4-20151223-gfa8646d-LibreSSL_2.5.4-i686-static
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting download at: 0.000 kB
INFO: Metadata:
INFO:   duration              2597.53
INFO:   moovPosition          40.00
INFO:   width                 640.00
INFO:   height                480.00
INFO:   videocodecid          avc1
INFO:   audiocodecid          mp4a
INFO:   avcprofile            100.00
INFO:   avclevel              30.00
INFO:   aacaot                2.00
INFO:   videoframerate        29.97
INFO:   audiosamplerate       44100.00
INFO:   audiochannels         2.00
INFO: tags:
INFO:   ┬σtoo                 Lavf52.31.0
INFO: trackinfo:
INFO:   length                7784800.00
INFO:   timescale             2997.00
INFO:   language              und
INFO: sampledescription:
INFO:   sampletype            avc1
INFO:   length                114547712.00
INFO:   timescale             44100.00
INFO:   language              und
INFO: sampledescription:
INFO:   sampletype            mp4a
415213.038 kB / 2597.50 sec (99.9%)
Download complete

The downloaded file is in the FLV container, so you may wish to losslessly remux into the MP4 (.mp4) or the Matroska (.mkv) container; FFmpeg can be used for that (search and ye shall find...).

Regards.