Re: streamlink: an up to date fork of livestreamerImpossible to edit yesterday's post.
Better question may be: How to use streamlink to save youtube live stream and get the file of good quality if it is possible. |
Re: streamlink: an up to date fork of livestreamerIt appears to be that mp4 file type is the only file type on youtube that can be copied, which does not result in a good file.
Therefore, making flv file with ffmpeg is better option. Quote:
dt.au3 $dtime = @YEAR & '-' & @MON & '-' & @MDAY & '_' & @HOUR & '-' & @MIN & '-' & @SEC consolewrite($dtime) clb.au3 $var = ClipGet() ConsoleWrite($var) https://www.youtube.com/watch?v=y60wDzZt8yg Code:
C:\MISC\~>youtube-dl.exe -v -F --no-check-certificate https://www.youtube.com/watch?v=y60wDzZt8yg |
Re: streamlink: an up to date fork of livestreamerHere is how to get good file from youtube live stream with streamlink:
streamlink https://www.youtube.com/watch?v=y60wDzZt8yg 480p --stdout | ffmpeg -i pipe:0 -c:v h264 -c:a aac c:\test.flv Code:
C:\>streamlink https://www.youtube.com/watch?v=y60wDzZt8yg 480p --stdout | ffmpeg -i pipe:0 -c:v h264 -c:a aac c:\test.flv |
Re: streamlink: an up to date fork of livestreamerHere is solution that reduces high CPU usage to normal when making .flv file with ffmpeg on youtube live stream:
Replace -c:v h264 with: -c:v copy streamlink https://www.youtube.com/watch?v=y60wDzZt8yg 480p --stdout | ffmpeg -i pipe:0 -c:v copy -c:a aac c:\test.flv Code:
ffmpeg version 3.3.2 Copyright (c) 2000-2017 the FFmpeg developers [libx264 @ 0000000002c5b2e0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 |
Re: streamlink: an up to date fork of livestreamer |
Re: streamlink: an up to date fork of livestreamerSomething worth saying.
BBC website, pre-recorded video, "manifest" file.. http://www.bbc.co.uk/news/world-us-canada-41826022 The heroin-ravaged city fighting back Code:
C:\>streamlink.exe "http://vod-hds-uk-live.bbcfmt.hs.llnwd.net/usp/auth/vod/piff_abr_full_sd/21a452-p051skl0/vf_p051skl0_0bd66164-b23d-4a18-a305-75be57e4e8de.ism/pc_hd_abr_v2_hds_master.f4m?s=1509935821&e=1509979021&h=343a818cbf79a3218a3cc8b86a530f97" best Code:
C:\>youtube-dl.exe -v -F --no-check-certificate "http://vod-hds-uk-live.bbcfmt.hs.llnwd.net/usp/auth/vod/piff_abr_full_sd/21a452-p051skl0/vf_p051skl0_0bd66164-b23d-4a18-a305-75be57e4e8de.ism/pc_hd_abr_v2_hds_master.f4m?s=1509935821&e=1509979021&h=343a818cbf79a3218a3cc8b86a530f97" So far I get it with streamlink only. Future is bright for streamlink and would-be forks. |
Re: streamlink: an up to date fork of livestreamerHere is what youtube-dl says about problem from last post:
https://github.com/rg3/youtube-dl/issues/14684 OK. No youtube-dl, no streamlink, here is solution how to get video file with ffmpeg. I use firefox 56 and User Agent Switcher 0.7.3.1 extension to change browser's user agent to iphone 3.0. Hls Stream Detector add-on returns 10 m3u8 urls, I use one of them: Code:
http://vod-hls-uk-live.bbcfmt.hs.llnwd.net/usp/auth/vod/piff_abr_full_sd/21a452-p051skl0/vf_p051skl0_0bd66164-b23d-4a18-a305-75be57e4e8de.ism/mobile_wifi_main_sd_abr_v2_hls_master.m3u8?s=1510205396&e=1510248596&h=72e7c915698753356662d35285a3907a#t=0 Enter this url in browser's address bar and save m3u8 file. It will look like this: Code:
#EXTM3U Replace: mobile_wifi_main_sd_abr_v2_hls_master.m3u8 with: vf_p051skl0_0bd66164-b23d-4a18-a305-75be57e4e8de-audio_eng=96000-video=1604000.m3u8 or some other m3u8 line from saved file with resolution to your liking. Code:
ffplay.exe http://vod-hls-uk-live.bbcfmt.hs.llnwd.net/usp/auth/vod/piff_abr_full_sd/21a452-p051skl0/vf_p051skl0_0bd66164-b23d-4a18-a305-75be57e4e8de.ism/vf_p051skl0_0bd66164-b23d-4a18-a305-75be57e4e8de-audio_eng=96000-video=1604000.m3u8?s=1510205396&e=1510248596&h=72e7c915698753356662d35285a3907a#t=0 Code:
C:\>ffplay.exe http://vod-hls-uk-live.bbcfmt.hs.llnwd.net/usp/auth/vod/piff_abr_full_sd/21a452-p051skl0/vf_p051skl0_0bd66164-b23d-4a18-a305-75be57e4e8de.ism/vf_p051skl0_0bd66164-b23d-4a18-a305-75be57e4e8de-audio_eng=96000-video=1604000.m3u8?s=1510205396 & e=1510248596 & h=72e7c915698753356662d35285a3907a#t=0 ![]() |
Re: streamlink: an up to date fork of livestreamer |
Re: streamlink: an up to date fork of livestreamerHi , thanks for the following .
"plugins for dailymotion" Code:
https://github.com/streamlink/streamlink/blob/master/src/streamlink/plugins/dailymotion.py |
Re: streamlink: an up to date fork of livestreamerLatest release: 0.11.0
https://github.com/streamlink/stream...ses/tag/0.11.0 Forum is alive again, welcome to everyone after a long inactivity page ;) |
Re: streamlink: an up to date fork of livestreamerthey pussied out and removed neulion download modules tho.
|
Re: streamlink: an up to date fork of livestreamerIt is not tragic.
plugin exists, who is keen on neulion can post plugin somewhere or modify it for livestreamer. Let neulion chase livestreamer. |
Re: streamlink: an up to date fork of livestreamermake a torrent and seed forever.
|
Re: streamlink: an up to date fork of livestreamer |
Re: streamlink: an up to date fork of livestreamer |
Re: streamlink: an up to date fork of livestreamerQuote:
Guys, New streamlink fork. Live.. https://github.com/livecli |
Re: streamlink: an up to date fork of livestreamerIt's strange, especially that the owner Livecli (back-to) is one of the creators of Streamlink. I'm also wondering why the MyFreeCams plugin, which has been in existence for a long time and is in Livecli, has never been added to Streamlink plugins?
|
Re: streamlink: an up to date fork of livestreamerCheer up!
Here is something for Chinese guys, a lot of sex ! https://live.fc2.com/adult/ https://github.com/livecli/livecli/issues/26 |
Re: streamlink: an up to date fork of livestreamerquotes:
Quote:
Quote:
|
Re: streamlink: an up to date fork of livestreamerBut back-to of this plug-in has previously been created from plugins for cam4, bongacams, etc., but it is not known why it was not added to the project. I have about a year, but he added it only to the livecli. Women like us naughty boys :D
|
Re: streamlink: an up to date fork of livestreamerhttps://github.com/livecli/livecli/issues
This repository has been archived by the owner. It is now read-only. |
Re: streamlink: an up to date fork of livestreamerhttps://github.com/streamlink/stream...lugin-requests
Plugins which fall under the following categories will not be implemented or considered and the request will be closed: 1. Any kind of streaming service that uses DRM protection 2. Sites which are hosting stolen content as their main source of content 3. Sites which are primarily rehosting content that is available from a legitimate source (TV shows, sports, news, etc.) 4. Sites which require any sort of cable login or subscription 5. NSFW sites of a pornographic nature (cam sites, porn sites, etc.) 5. Sites which are mostly hosting VODs (stolen or legitimate), or require large changes to existing code to watch VODs 7. Sites where the maintainer has requested we not add their site to Streamlink 8. Sites which are unmaintained. https://github.com/Damianonymous/streamlink-plugins |
Re: streamlink: an up to date fork of livestreamerhttp://stream-recorder.com/forum/sho...4&postcount=99
Quote: Originally Posted by Damianonymous MyFreeCams plugin has never been added to Streamlink plugins http://stream-recorder.com/forum/sho...postcount=1464 Quote: Originally Posted by dm9452 So... is there an application that is able to handle wide-screen MFC streams? https://mega.nz/#!VyxmkC7Z!yu4mkSjcJ...37pjnZndlIRFn8 S-2w but it requires streamlink http://stream-recorder.com/forum/sho...&postcount=102 Quote: Plugins which fall under the following categories will not be implemented or considered and the request will be closed: 7. Sites where the maintainer has requested we not add their site to Streamlink |
Re: streamlink: an up to date fork of livestreamerQuote:
https://www.videohelp.com/software/S...ns#downloadold streamlink-0.14.2.tar.gz 2018-06-29 629kB * streamlink-0.14.2.exe 2018-06-29 38.2MB * streamlink-0.14.0.tar.gz 2018-06-26 627kB * streamlink-0.14.0.exe 2018-06-26 38.2MB * streamlink-0.13.0.tar.gz 2018-06-06 29.4MB * streamlink-0.13.0.exe 2018-06-06 38.2MB * streamlink-0.12.1.tar.gz 2018-05-07 547kB * streamlink-0.12.1.exe 2018-05-07 38.2MB * streamlink-0.11.0.exe 2018-03-08 38.2MB * streamlink-0.10.0.exe 2018-01-23 38MB * streamlink-0.9.0.tar.gz 2017-11-14 538kB * streamlink-0.9.0.exe 2017-11-14 38.1MB * streamlink-0.8.1.exe 2017-09-12 38.1MB * streamlink-0.7.0.exe 2017-06-30 38MB * streamlink-0.6.0.exe 2017-05-27 37.8MB * streamlink-0.5.0.exe 2017-04-04 37.8MB * streamlink-0.4.0.exe 2017-03-09 37.8MB * streamlink-0.3.2.exe 2017-02-10 37.8MB * streamlink-portable-master-2017-02-09.zip 2017-02-09 8.8MB * streamlink-0.3.1.exe 2017-02-09 37.7MB * streamlink-portable-master.zip 2017-02-03 8.6MB * streamlink-latest.exe 2017-02-03 37.8MB * |
Re: streamlink: an up to date fork of livestreamer |
Re: streamlink: an up to date fork of livestreamerYou can use streamlink to download these videos if you want to. Get stream url with browser's network monitor, it should look like this: "https://ovhv52.twincdn.com/videos/62/62221/62221_360p.mp4" Code:
C:\>streamlink.exe httpstream://https://ovhv52.twincdn.com/videos/62/62221/62221_360p.mp4 best -o 62221_360p.mp4 |
Re: streamlink: an up to date fork of livestreamer |
Re: streamlink: an up to date fork of livestreamerQuote:
If you want to download the stream provide stream url or link. Keep us up to date with Vitnamese XXX sites, it may increase number of viewers on forum. Cheers. |
Re: streamlink: an up to date fork of livestreamer |
Re: streamlink: an up to date fork of livestreamerhttps://billy2011.github.io/streamlink-27/
Hey, Old peep-show plugins might work with this if somebody would want to give them a shot ! |
Re: streamlink: an up to date fork of livestreamerQuote:
|
All times are GMT -6. The time now is 03:45 AM. |