PDA

View Full Version : 2017 Live Stream Capture Tech Talk



TheBang
07-19-2017, 04:45 PM
This thread is for the nerds to discuss and figure out how best to capture the live streams this year. Currently, that means just FYF Fest this weekend (http://www.dailynews.com/arts-and-entertainment/20170719/how-to-experience-fyf-fest-for-free-with-just-announced-livestream).

Our collective knowledge during the last tour cycle is here.

Anyone familiar with Twitter live stream format? I imagine there's an HLS stream available somewhere for iOS devices. I wonder if they'll use MPEG-DASH for the main stream. I think that's what YouTube is using these days, right? Anyone got any tips or tools? We'll have all day Saturday and Sunday to figure out and practice on the Twitter stream.

Some tools:

https://github.com/Viblast/hls-proxy
https://github.com/osklil/hls-fetch

TheBang
07-19-2017, 04:57 PM
OK, well, I looked at one of the live streams listed here:

https://twitter.com/twitterlive

And while it's delivered via HLS, according to the manifest, it looks like it's AES encrypted. Bummer. I'll have to poke at this some more. I'd rather not have to resort to screen recording, but we may have no choice.

kargath
07-21-2017, 10:08 AM
OK, well, I looked at one of the live streams listed here:

https://twitter.com/twitterlive

And while it's delivered via HLS, according to the manifest, it looks like it's AES encrypted. Bummer. I'll have to poke at this some more. I'd rather not have to resort to screen recording, but we may have no choice.

If it does come down to that... what's the currently preferred method for doing screen caps?

LOVEANDZOMBIES
07-23-2017, 06:34 AM
Did anyone test record the stream yet? any luck?

theimage13
07-23-2017, 07:57 AM
If nothing else, I'd strongly encourage someone to at least do an audio grab. (My internet is so bad here that I don't think I could pull it off, or else I'd just be doing it myself)

Avarik
07-23-2017, 04:47 PM
I'll be screen recording with the GeForce Experience screen capture thing

Avarik
07-23-2017, 08:24 PM
Watching the stream of some other bullshit right now, is there a trick to stream quality? No options in the player to set it and it looks very low, like 480p low.

TheBang
07-23-2017, 08:38 PM
Yes, enter fullscreen mode, and you should get something closer to 1080p, I think.

FULLMETAL
07-23-2017, 08:56 PM
I only see a max of 1280x720 for the stream based on the info in the m3u8 file.

Here's the URL: https://hlslive-l3cg3.med1.m.lv.twimg.com/ls01/twitter/2017/07/24/TWITTER_VIDEO_FYF_Fest_20170724_1500148611878/3500K/3500_slide_twv1.m3u8

Avarik
07-23-2017, 09:10 PM
The audio sounds like it's crowd mics - gonna be complete shit for NIN

TheBang
07-23-2017, 09:11 PM
I only see a max of 1280x720 for the stream based on the info in the m3u8 file.

Here's the URL: https://hlslive-l3cg3.med1.m.lv.twimg.com/ls01/twitter/2017/07/24/TWITTER_VIDEO_FYF_Fest_20170724_1500148611878/3500K/3500_slide_twv1.m3u8
Yup, that's the highest bitrate, 3500. How are you getting the resolution? Decoding the fragments?

FULLMETAL
07-23-2017, 09:16 PM
Downloaded the m3u8 and the following was listed:

#EXTM3U
#EXT-X-STREAM-INF:BANDWIDTH=2121091,RESOLUTION=896x504,CODECS="mp4a.40.2,avc1.4d001f"
1800K/1800_slide_twv1.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=559938,RESOLUTION=400x224,CODECS="mp4a.40.2,avc1.42c01e"
450K/450_slide_twv1.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=985571,RESOLUTION=512x288,CODECS="mp4a.40.2,avc1.42c01e"
800K/800_slide_twv1.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=1425340,RESOLUTION=640x360,CODECS="mp4a.40.2,avc1.4d001f"
1200K/1200_slide_twv1.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=2908735,RESOLUTION=960x540,CODECS="mp4a.40.2,avc1.4d001f"
2500K/2500_slide_twv1.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=4023049,RESOLUTION=1280x720,CODECS="mp4a.40.2,avc1.640029"
3500K/3500_slide_twv1.m3u8

TheBang
07-23-2017, 09:33 PM
That's odd. I don't see that in the m3u8 that I get. This is what I get:

https://pastebin.com/JxcH3hjC

What does yours look like?

FULLMETAL
07-23-2017, 09:38 PM
https://i.imgur.com/S6bArT3.png

TheBang
07-23-2017, 09:42 PM
Here's as far as I've gotten in decryption. The decryption key (https://media-api.m.lv.twimg.com/programs/38647899/keys/id/20307890) is always the same, in hex: 45F859D2B58D3507DEBCF807A6F79D3A. i.e. they are not rotating keys (which is a feature). So, only the initialization vector (IV) is changing, and that's listed in the m3u8.

So, in my example m3u8 above, the IV should be CD08B15FC528B365A6365A74DDD6CC34 for fragment 02/30/03.ts.

It should work if you decrypt with those values, like so:


$ openssl aes-128-cbc -d -K 45f859d2b58d3507debcf807a6f79d3a -iv CD08B15FC528B365A6365A74DDD6CC34 -nosalt -in 03.ts -out 03-dec.ts

But I just get:


bad decrypt
35490:error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt:/SourceCache/OpenSSL098/OpenSSL098-52.40.1/src/crypto/evp/evp_enc.c:337:

:mad:

augustobt
07-23-2017, 09:45 PM
Crap. I can't see a thing on twitter, giving me some kind of error. It's probably geographically restricted.

FULLMETAL
07-23-2017, 09:48 PM
Downloaded a different m3u8 from the feed in the URL I mentioned above. It looks like the one you posted. Here's a link: https://pastebin.com/mczHJ3W1

Papagolash
07-23-2017, 09:59 PM
Soooo what am I copying and pasting where to get the best stream?

FULLMETAL
07-23-2017, 10:03 PM
Soooo what am I copying and pasting where to get the best stream?

Does this one work for you? https://hlslive-l3cg3.med1.m.lv.twimg.com/ls01/twitter/2017/07/24/TWITTER_VIDEO_FYF_Fest_20170724_1500148611878/3500K/3500_slide_twv1.m3u8

LOVEANDZOMBIES
07-23-2017, 10:14 PM
Does this one work for you? https://hlslive-l3cg3.med1.m.lv.twimg.com/ls01/twitter/2017/07/24/TWITTER_VIDEO_FYF_Fest_20170724_1500148611878/3500K/3500_slide_twv1.m3u8

My PC is just opening a download window and asking what app to use to open the file... Am I doing something wrong?

FULLMETAL
07-23-2017, 10:20 PM
My PC is just opening a download window and asking what app to use to open the file... Am I doing something wrong?

Sorry, no idea. I'm on OSX.

polski
07-23-2017, 10:21 PM
Open it with VLC, Media Player Classic, or even try a browser.

Papagolash
07-23-2017, 10:28 PM
Does this one work for you? https://hlslive-l3cg3.med1.m.lv.twimg.com/ls01/twitter/2017/07/24/TWITTER_VIDEO_FYF_Fest_20170724_1500148611878/3500K/3500_slide_twv1.m3u8


Crap not working, tried it on vlc and ace player

Leviathant
07-23-2017, 10:40 PM
Chiming in, that URL is not working on VLC on Windows 10 for me, when I Open a Network Stream.


gnutls debug: Winsock error 0 gnutls error: TLS handshake error: Internal error in memory allocation.
main error: TLS client session handshake error
gnutls debug: GnuTLS deinitialized
access_http error: cannot establish HTTP/TLS session

FULLMETAL
07-23-2017, 10:50 PM
Fuck guys, I don't know how it's working for me and no one else. Here's a screen cap of my browser if that's any help: https://i.imgur.com/sZ9AiNW.png

TheBang
07-23-2017, 11:00 PM
The decryption key requires a cookie to be resident from the main Twitter site. Otherwise, the client will get a 401 Unauthorized message when trying to retrieve the key. Unless you're able to fake the cookie, or otherwise redirect your client to fetch/read the key elsewhere, a web browser is probably the only client that can stream it properly.

slave2thewage
07-23-2017, 11:04 PM
This is what I get. VLC on OSX:


core debug: connection succeeded (socket = 24)securetransport debug: open TLS session for hlslive-l3cg3.med1.m.lv.twimg.com
securetransport debug: handshake is blocked, try again later
securetransport debug: handshake is blocked, try again later
securetransport debug: handshake is blocked, try again later
securetransport debug: cerfificate verification successful, result is 4
securetransport debug: handshake completed successfully
http debug: protocol 'HTTP' answer code 403
http error: error: HTTP/1.1 403 Forbidden

TheBang
07-23-2017, 11:13 PM
http error: error: HTTP/1.1 403 Forbidden
[/FONT][/COLOR]
That's probably because you're out of the US.

Jon
07-23-2017, 11:16 PM
The decryption key requires a cookie to be resident from the main Twitter site. Otherwise, the client will get a 401 Unauthorized message when trying to retrieve the key. Unless you're able to fake the cookie, or otherwise redirect your client to fetch/read the key elsewhere, a web browser is probably the only client that can stream it properly.

So far the only success I've had with streaming on Windows 10 is Edge:

http://i66.tinypic.com/r0us5y.png

Papagolash
07-23-2017, 11:29 PM
trying Edge worked for me too. I had to log into Twitter 1st before trying the link. I've also learned tonight that Internet Explorer is now called Edge.

TheBang
07-23-2017, 11:35 PM
trying Edge worked for me too. I had to log into Twitter 1st before trying the link. I've also learned tonight that Internet Explorer is now called Edge.
No, Internet Explorer has been replaced by Edge. Windows 10 still includes IE separately too.

Jon
07-23-2017, 11:40 PM
trying Edge worked for me too. I had to log into Twitter 1st before trying the link. I've also learned tonight that Internet Explorer is now called Edge.

Also got it working in Opera for Windows 10. Go to Menu > Settings > Cookies section > make sure "Block third-party cookies and site data" is unchecked.

slave2thewage
07-23-2017, 11:43 PM
Works in non-US territories through the VPN in Opera as well.

becomingtom
07-24-2017, 12:06 AM
I downloaded Opera but it says, "Unfortunately, license restrictions prevent you from viewing in your location", am I doing anything wrong?
I'm in Canada. I just started Opera and tried it, I'm not sure what is meant by through the Vpn.
I'm totally new at this stuff. Any help would be appreciated!

augustobt
07-24-2017, 12:10 AM
I downloaded Opera but it says, "Unfortunately, license restrictions prevent you from viewing in your location", am I doing anything wrong?
I'm in Canada. I just started Opera and tried it, I'm not sure what is meant by through the Vpn.
I'm totally new at this stuff. Any help would be appreciated!
on your address bar, on the left, should be the letters "VPN". click there, then click united states. and reload the page. voilą!

becomingtom
07-24-2017, 12:19 AM
Thanks for the help but I just don't see anything that says VPN

augustobt
07-24-2017, 12:29 AM
Thanks for the help but I just don't see anything that says VPN
should be something like this
http://i.imgur.com/501iF2f.png

slave2thewage
07-24-2017, 12:32 AM
There is an option to turn on the VPN in the Opera settings. In the Mac version, it's under "Privacy & security".

becomingtom
07-24-2017, 12:34 AM
I see all of that but there is no VPN on my screen.
Do I need to be logged into twitter?

slave2thewage
07-24-2017, 12:36 AM
I see all of that but there is no VPN on my screen.
Do I need to be logged into twitter?
Yes, you need to be logged in.

Once you have the VPN option turned on, the blue VPN button in the address bar should be visible. Click it and set the location to 'United States'.

Jon
07-24-2017, 12:38 AM
Thanks for the help but I just don't see anything that says VPN

Upper left corner, click on MENU > SETTINGS

Settings tab will open, on left panel click on PRIVACY & SECURITY

3rd section down is VPN, check the box next to "Enable VPN"

This will give you the blue VPN box next to your URL in the picture above. Left-click drop down box and change from "Optimal" to "United States"

EDIT: took too long, thanks slave2thewage

becomingtom
07-24-2017, 12:39 AM
Thanks guys I did need to turn VPN on, I have it working now.
Hopefully we see some NIN!

trollmanen
07-24-2017, 10:04 AM
Did this get recorded? Has anyone ripped the audio from the Branches/Bones-Copy Of A video?

slave2thewage
07-24-2017, 10:19 AM
Did this get recorded? Has anyone ripped the audio from the Branches/Bones-Copy Of A video?
They weren't streamed, so no. It's very likely an audience recording will turn up, though.

For the B-B/CoA video, I can rip the audio soon. I'm just still exhausted from staying up all night.

TheBang
07-24-2017, 03:40 PM
Has anyone ripped the audio from the Branches/Bones-Copy Of A video?
540

Avarik
07-27-2017, 12:44 AM
Live Stream the Panorama NYC Festival This Weekend on Yahoo Music! (https://www.yahoo.com/music/live-stream-panorama-nyc-festival-weekend-yahoo-music-171512639.html)

streetman
07-27-2017, 01:44 AM
Live Stream the Panorama NYC Festival This Weekend on Yahoo Music! (https://www.yahoo.com/music/live-stream-panorama-nyc-festival-weekend-yahoo-music-171512639.html)

Can we start a petition to get NIN streamed on here? :)

ryanmcfly
07-28-2017, 12:05 AM
NIN has been added to the yahoo stream!

https://www.yahoo.com/music/live-stream-panorama-nyc-festival-weekend-yahoo-music-171512639.html

streetman
07-28-2017, 02:03 PM
NIN has been added to the yahoo stream!

https://www.yahoo.com/music/live-stream-panorama-nyc-festival-weekend-yahoo-music-171512639.html

Awesome! Yahoo! is great at live streaming music. Also, they have an app on Apple tv so watching this on the big screen with big speakers is a possibility!

Avarik
07-28-2017, 02:19 PM
Awesome! Yahoo! is great at live streaming music. Also, they have an app on Apple tv so watching this on the big screen with big speakers is a possibility!

Let us know if the app supports live streams please

TheBang
07-28-2017, 02:57 PM
Even though the streaming is not active yet, I pulled this info about the available streams out of a JSON file:

{"host":"https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_9_0.m3u8","path":"","width":0,"height":0,"bitrate":0,"duration":0,"mime_type":"application/vnd.apple.mpegurl","live":true,"h264_profile":"High","is_primary":false,"cdn":"akamai","format":"m3u8","mediaPlaylist":"#EXT-X-MEDIA:TYPE=SUBTITLES,GROUP-ID=\"subs\",NAME=\"eng\",DEFAULT=YES,AUTOSELECT=YES,FORCED=NO,LANGUAGE=\"eng\",URI=\"https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_9_0.m3u8\"","type":"subtitle","framerate":0,"channels":0,"forced":false,"acodec":"","vcodec":"h264 (High) (avc1 / 0x31637661)","codecs":"","auto_select":false,"default":false,"avgbitrate":0}


{"host":"https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_7.m3u8","path":"","width":640,"height":360,"bitrate":512,"duration":0,"mime_type":"application/vnd.apple.mpegurl","live":true,"h264_profile":"High","is_primary":false,"cdn":"akamai","format":"m3u8","mediaPlaylist":"#EXT-X-STREAM-INF:BANDWIDTH=512725,RESOLUTION=640x360,CODECS=\"avc1.4D401E,mp4a.40.2\",SUBTITLES=\"subs\"","type":"stream","framerate":0,"channels":0,"forced":false,"acodec":"","vcodec":"h264 (High) (avc1 / 0x31637661)","codecs":"avc1.4D401E,mp4a.40.2","alt_renditions":{"subtitle_group_id":"subs"},"auto_select":false,"default":false,"avgbitrate":0},


{"host":"https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_1.m3u8","path":"","width":1920,"height":1080,"bitrate":8126,"duration":0,"mime_type":"application/vnd.apple.mpegurl","live":true,"h264_profile":"High","is_primary":false,"cdn":"akamai","format":"m3u8","mediaPlaylist":"#EXT-X-STREAM-INF:BANDWIDTH=8126921,RESOLUTION=1920x1080,CODECS= \"avc1.64002A,mp4a.40.2\",SUBTITLES=\"subs\"","type":"stream","framerate":0,"channels":0,"forced":false,"acodec":"","vcodec":"h264 (High) (avc1 / 0x31637661)","codecs":"avc1.64002A,mp4a.40.2","alt_renditions":{"subtitle_group_id":"subs"},"auto_select":false,"default":false,"avgbitrate":0},


{"host":"https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_2.m3u8","path":"","width":640,"height":360,"bitrate":854,"duration":0,"mime_type":"application/vnd.apple.mpegurl","live":true,"h264_profile":"High","is_primary":false,"cdn":"akamai","format":"m3u8","mediaPlaylist":"#EXT-X-STREAM-INF:BANDWIDTH=854921,RESOLUTION=640x360,CODECS=\"avc1.4D401E,mp4a.40.2\",SUBTITLES=\"subs\"","type":"stream","framerate":0,"channels":0,"forced":false,"acodec":"","vcodec":"h264 (High) (avc1 / 0x31637661)","codecs":"avc1.4D401E,mp4a.40.2","alt_renditions":{"subtitle_group_id":"subs"},"auto_select":false,"default":false,"avgbitrate":0},


{"host":"https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_3.m3u8","path":"","width":1280,"height":720,"bitrate":5126,"duration":0,"mime_type":"application/vnd.apple.mpegurl","live":true,"h264_profile":"High","is_primary":false,"cdn":"akamai","format":"m3u8","mediaPlaylist":"#EXT-X-STREAM-INF:BANDWIDTH=5126921,RESOLUTION=1280x720,CODECS=\"avc1.4D4020,mp4a.40.2\",SUBTITLES=\"subs\"","type":"stream","framerate":0,"channels":0,"forced":false,"acodec":"","vcodec":"h264 (High) (avc1 / 0x31637661)","codecs":"avc1.4D4020,mp4a.40.2","alt_renditions":{"subtitle_group_id":"subs"},"auto_select":false,"default":false,"avgbitrate":0},


{"host":"https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_4.m3u8","path":"","width":640,"height":360,"bitrate":1412,"duration":0,"mime_type":"application/vnd.apple.mpegurl","live":true,"h264_profile":"High","is_primary":false,"cdn":"akamai","format":"m3u8","mediaPlaylist":"#EXT-X-STREAM-INF:BANDWIDTH=1412873,RESOLUTION=640x360,CODECS=\"avc1.4D401E,mp4a.40.2\",SUBTITLES=\"subs\"","type":"stream","framerate":0,"channels":0,"forced":false,"acodec":"","vcodec":"h264 (High) (avc1 / 0x31637661)","codecs":"avc1.4D401E,mp4a.40.2","alt_renditions":{"subtitle_group_id":"subs"},"auto_select":false,"default":false,"avgbitrate":0},


{"host":"https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_5.m3u8","path":"","width":1280,"height":720,"bitrate":4626,"duration":0,"mime_type":"application/vnd.apple.mpegurl","live":true,"h264_profile":"High","is_primary":false,"cdn":"akamai","format":"m3u8","mediaPlaylist":"#EXT-X-STREAM-INF:BANDWIDTH=4626889,RESOLUTION=1280x720,CODECS=\"avc1.4D401F,mp4a.40.2\",SUBTITLES=\"subs\"","type":"stream","framerate":0,"channels":0,"forced":false,"acodec":"","vcodec":"h264 (High) (avc1 / 0x31637661)","codecs":"avc1.4D401F,mp4a.40.2","alt_renditions":{"subtitle_group_id":"subs"},"auto_select":false,"default":false,"avgbitrate":0},


{"host":"https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_6.m3u8","path":"","width":1024,"height":576,"bitrate":3126,"duration":0,"mime_type":"application/vnd.apple.mpegurl","live":true,"h264_profile":"High","is_primary":false,"cdn":"akamai","format":"m3u8","mediaPlaylist":"#EXT-X-STREAM-INF:BANDWIDTH=3126921,RESOLUTION=1024x576,CODECS=\"avc1.4D401F,mp4a.40.2\",SUBTITLES=\"subs\"","type":"stream","framerate":0,"channels":0,"forced":false,"acodec":"","vcodec":"h264 (High) (avc1 / 0x31637661)","codecs":"avc1.4D401F,mp4a.40.2","alt_renditions":{"subtitle_group_id":"subs"},"auto_select":false,"default":false,"avgbitrate":0}

So, it looks like they're using Akamai as the CDN and HLS for the format. I have high hopes that this stream will not be encrypted, which should make it trivial to capture. Looking at the streams above, it looks like they are not encrypted. Also, putting the m3u8 into VLC appears to work, so that means no shenanigans with cookies either.

The highest bitrate stream, 8.0 Mbps 1080p, appears to be this one:

https://yahooamdlive.akamaized.net/out/u/hls/139e5920-61bc-11e7-bfde-66f36f21ba41/5560_1.m3u8

streetman
07-28-2017, 03:21 PM
Let us know if the app supports live streams please

It indeed does. I already checked it out. You just have to go the Yahoo! channel on Apple tv when the live stream begins.

TheBang
07-28-2017, 04:39 PM
The stream for the first day is now live. It's not encrypted; no cookie issues. The fragments are long-lived, and simply and sequentially named. This should be an easy, straight-forward capture. Pretty good quality too. 8 Mbps 1080p60 video. Audio is unfortunately only 128 Kbps AAC, but it's passable.


It indeed does. I already checked it out. You just have to go the Yahoo! channel on Apple tv when the live stream begins.

Confirmed. Panorama is the first thing listed in the Yahoo channel on Apple TV.

streetman
07-28-2017, 07:43 PM
The stream for the first day is now live. It's not encrypted; no cookie issues. The fragments are long-lived, and simply and sequentially named. This should be an easy, straight-forward capture. Pretty good quality too. 8 Mbps 1080p60 video. Audio is unfortunately only 128 Kbps AAC, but it's passable.



Confirmed. Panorama is the first thing listed in the Yahoo channel on Apple TV.

Watching it now. Quality is damn good! NIN on here is going to be EPIC!

P.S. This Vance Joy is utter rubbish! Like a poor man's John Mayer lol. And I hate John Mayer.

FULLMETAL
07-29-2017, 03:17 PM
Sirius XM is also broadcasting sets from Panorama, but they haven't updated their schedule for Sunday yet. I'm pretty sure they're compressed audio, but it might be worthwhile for someone to hit record if they get NIN's performance.

http://blog.siriusxm.com/2017/07/25/panorama2017/

Conan The Barbarian
07-30-2017, 04:56 PM
Will anyone be capturing the stream tonight? My wife says trent can take a backseat to westeros tonight.

rampface
07-30-2017, 06:43 PM
I really hope someone is able to capture the show because I won't be able to watch live.

LOVEANDZOMBIES
07-30-2017, 06:45 PM
Yeah my family picked a hell of a week to schedule a family reunion...

streetman
07-30-2017, 07:00 PM
Yeah my family picked a hell of a week to schedule a family reunion...

Same here. A goddamn family member flies in yesterday and watching it LIVE with the sound up now becomes a real challenge.

streetman
07-30-2017, 07:01 PM
Will anyone be capturing the stream tonight? My wife says trent can take a backseat to westeros tonight.

Slap that bitch!

Lol. jk.

TheBang
07-30-2017, 07:08 PM
Will anyone be capturing the stream tonight?
Yes

becomingtom
07-30-2017, 08:42 PM
Not sure if anyone can help me out, I went to watch the concert tonight through Opera and it says I don't have Adobe Flash.
I went to download that and all it keeps saying when I try to download is that the download won't work
Any advice?

blassster
07-30-2017, 08:46 PM
Not sure if anyone can help me out, I went to watch the concert tonight through Opera and it says I don't have Adobe Flash.
I went to download that and all it keeps saying when I try to download is that the download won't work
Any advice?Temporarily install Chrome or Firefox? I'm assuming you are not already using those for a very specific reason, so uninstall them after in that case.

This is region locked (of course!). Alternatively, you could look for a capture after which is what I'm counting on. At least one person is doing that, as confirmed a few posts above.

becomingtom
07-30-2017, 09:58 PM
Temporarily install Chrome or Firefox? I'm assuming you are not already using those for a very specific reason, so uninstall them after in that case.

This is region locked (of course!). Alternatively, you could look for a capture after which is what I'm counting on. At least one person is doing that, as confirmed a few posts above.
Thanks I got it to work through Firefox!

TheBang
07-30-2017, 10:25 PM
FYI, the video file download is probably going to be around 5 GB, so it's probably only going to be available on Dime.

rampface
07-30-2017, 10:33 PM
Is there anyway to get a YouTube link?

ryanmcfly
07-30-2017, 10:36 PM
Any chance of an audio rip?

FULLMETAL
07-30-2017, 10:37 PM
FYI, the video file download is probably going to be around 5 GB, so it's probably only going to be available on Dime.

Good. I feel so dirty having a .95 ratio.


Any chance of an audio rip?

I put this up on my tumblr, but my capture had some stuttering so I'm waiting for the download before I redo.

https://24-24-1-482.tumblr.com/post/163622964770/nine-inch-nails-the-lovers-live

hollowsminion
07-30-2017, 10:50 PM
FYI, the video file download is probably going to be around 5 GB, so it's probably only going to be available on Dime.

Shit, I hope I have an account and can remember the password. ��

TheBang
07-30-2017, 11:08 PM
I'm going to do an audio rip too (just like the 2013 shows). It will probably be about 120 MB, so I'll just host it. I'll do a public torrent (just for ETS) besides Dime too.

There's a torrent on Dime right now, but I'd recommend waiting for mine, because I'll have both MKV and MP4 options, tracked with chapters, and triple checked for fragment corruption.

Mike
07-30-2017, 11:56 PM
just in case someone happens across a torrent of the capture, it would be cool if a link appeared in my PM inbox :eek:

streetman
07-31-2017, 12:19 AM
Hope we get a youtube link soon!

niggo
07-31-2017, 02:38 AM
I couldn't watch the live stream, looking veryyyy forward to the video and audio rips. Thank you very much!

lastheardfrom
07-31-2017, 02:59 AM
Found 2.5gb rip but there's a bit of stuttering throughout. Hopefully a clean rip will surface, or that we can at least piece one together.

TheBang
07-31-2017, 06:40 AM
Here are the download links for audio and video.

streetman
07-31-2017, 02:26 PM
I hope one of these captures includes the build up/intro of the show.

ericy210
07-31-2017, 07:10 PM
Here's the stream

https://youtu.be/JujihaeDpQ0

TheBang
07-13-2018, 12:57 PM
For the tech nerds, the current live stream for La 2 is extremely straightforward:

http://www.rtve.es/directo/la-2/

It's an unencrypted HSS stream, with no special cookie or copy protection tricks. The fragments are not even served over HTTPS, so it's easy to sniff if that's your preferred method of capturing. The fragments are also long-lived and sequentially numbered, so it should be trivial to assemble a download list after the fact.

Here's a sample meta-m3u8 that I grabbed from here:

http://rtvev4-live.hss.adaptive.level3.net/egress/ahandler/rtvegl0/la2_lv3_aosv4_gl0/la2_lv3_aosv4_gl0.isml/la2_lv3_aosv4_gl0.m3u8?hls_no_audio_only


#EXTM3U#EXT-X-VERSION:4
## Created with Unified Streaming Platform(version=1.7.19)


# AUDIO groups
#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio-aacl-128",NAME="audio",AUTOSELECT=YES,DEFAULT=YES


# variants
#EXT-X-STREAM-INF:BANDWIDTH=616000,AVERAGE-BANDWIDTH=560000,CODECS="mp4a.40.2,avc1.4D401E",RESOLUTION=480x270,FRAME-RATE=25,AUDIO="audio-aacl-128",CLOSED-CAPTIONS=NONE
la2_lv3_aosv4_gl0-audio=128000-video=400000.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=908000,AVERAGE-BANDWIDTH=825000,CODECS="mp4a.40.2,avc1.4D401E",RESOLUTION=640x360,FRAME-RATE=25,AUDIO="audio-aacl-128",CLOSED-CAPTIONS=NONE
la2_lv3_aosv4_gl0-audio=128000-video=650000.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=1899000,AVERAGE-BANDWIDTH=1726000,CODECS="mp4a.40.2,avc1.4D401E",RESOLUTION=1024x576,FRAME-RATE=25,AUDIO="audio-aacl-128",CLOSED-CAPTIONS=NONE
la2_lv3_aosv4_gl0-audio=128000-video=1500000.m3u8


# keyframes
#EXT-X-I-FRAME-STREAM-INF:BANDWIDTH=59000,CODECS="avc1.4D401E",RESOLUTION=480x270,URI="keyframes/la2_lv3_aosv4_gl0-video=400000.m3u8"
#EXT-X-I-FRAME-STREAM-INF:BANDWIDTH=95000,CODECS="avc1.4D401E",RESOLUTION=640x360,URI="keyframes/la2_lv3_aosv4_gl0-video=650000.m3u8"
#EXT-X-I-FRAME-STREAM-INF:BANDWIDTH=219000,CODECS="avc1.4D401E",RESOLUTION=1024x576,URI="keyframes/la2_lv3_aosv4_gl0-video=1500000.m3u8"

Highest quality is only SD.

A sample fragment list:
http://rtvev4-live.hss.adaptive.level3.net/egress/ahandler/rtvegl0/la2_lv3_aosv4_gl0/la2_lv3_aosv4_gl0.isml/la2_lv3_aosv4_gl0-audio=128000-video=1500000.m3u8

TheBang
07-13-2018, 05:33 PM
The fragments are also long-lived and sequentially numbered, so it should be trivial to assemble a download list after the fact.
A few more details. They are not long-lived. They last about 8 minutes max. Not terrible, but not great either. The fragments are about 7 seconds each, and about 1.5 MiB each. So, the whole show should be a little over 1 GiB of data.

And, as discussed in the other thread, you will probably need a Spanish IP address. The m3u8 and ts links generate "Access is forbidden" if you're not coming from a Spanish IP address.

StockAvuryah
07-14-2018, 05:45 PM
A few more details. They are not long-lived. They last about 8 minutes max. Not terrible, but not great either. The fragments are about 7 seconds each, and about 1.5 MiB each. So, the whole show should be a little over 1 GiB of data.

And, as discussed in the other thread, you will probably need a Spanish IP address. The m3u8 and ts links generate "Access is forbidden" if you're not coming from a Spanish IP address.

Thanks. Would it be as easy as putting an address in VLC and recording ? And if yeah, where to find that ?

icklekitty
07-14-2018, 05:48 PM
Make sure you have the right stream; it's not on the TV link: http://www.rtve.es/alacarta/videos/programa/irtve11-live/3658810/