I can get video perfectly fine, however I get no audio when capturing nbc sports streams. I use urlsnopper to get the urls.
Code:
http://stream.nbcsports.com/notre-dame/?pid=26849
sniff for m3u8, you should get 4 or 5 returns
Code:
http://nbcstreamwest.nbcsports.com/vod/40677060-be97-4d2d-ad4d-76cec6cc94ba/geo4-nbc-sports0910102037.ism/manifest(format=m3u8-aapl-v4,filtername=vodcut)
now search for token, you should see an f4m url with something like
Code:
?token=st=1474413149~exp=1474413269~acl=/vod/40677060-be97-4d2d-ad4d-76cec6cc94ba/geo4-nbc-sports0910102037.ism/*~hmac=84bfc6d442d805d2d880527c5fe15d7268be0828484711498e6a8a93c960177f
combine those 2 urls into this
Code:
livestreamer hlsvariant://http://nbcstreamwest.nbcsports.com/vod/40677060-be97-4d2d-ad4d-76cec6cc94ba/geo4-nbc-sports0910102037.ism/manifest(format=m3u8-aapl-v4,filtername=vodcut)?token=st=1474413149~exp=1474413269~acl=/vod/40677060-be97-4d2d-ad4d-76cec6cc94ba/geo4-nbc-sports0910102037.ism/*~hmac=84bfc6d442d805d2d880527c5fe15d7268be0828484711498e6a8a93c960177f best -o nd.ts
and it will start downloading 1080p video, no audio. Is there something I'm doing wrong, or is the audio a separate stream that I'm not seeing. Thanks!