Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
how to download videos from yahoo!7 ?hi everyone .
I tried to download from this site : https://au.tv.yahoo.com/plus7 with some programs but i failed ! can anyone help me please . this is very important for me there is one of videos from this site : https://au.tv.yahoo.com/plus7/all-sa...sode-46/#page1 |
#2
|
|||
|
|||
Re: how to download videos from yahoo!7 ?https://greasyfork.org/en/scripts/88...d-details/code
Install the above script, you'll need Tampermonkey on Chrome or Greasemonkey on Firefox. When you watch a video on Plus7 you'll get a FFMPEG button at the top, click on it, followed by the resolution and it will give you the command to enter into Command Prompt to download the stream via FFMPEG. |
#3
|
|||
|
|||
Re: how to download videos from yahoo!7 ?Quote:
ffmpeg -i "https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=4653030887001&expiration=14 59814460000&token=7ee19f9f573cd8ec6cdf3a675ff7c46d f77c6848" -c copy All_Saints__Season_1__episode_46.ts now the problem is that i dont know what should i do with this and how that will be used in command prompt ! Last edited by meisa : 04-02-2016 at 06:32 PM. |
#4
|
|||
|
|||
Re: how to download videos from yahoo!7 ?I'm assuming you're using Windows. So, grab the latest version of FFMPEG from here:
https://ffmpeg.zeranoe.com/builds/wi...in32-static.7z You may need 7-Zip to extract the file if you cannot open it. Now, open the bin folder from the files you just extracted. You should see ffmpeg, ffplay and ffprobe inside. Click on the address bar at the top and copy the entire path. Now open Command Prompt and then enter the following (don't forget the quotes): Code:
cd /d "<right-click and paste here>" So for me it looks something like this: Code:
cd /d "C:\Users\nyancat\Desktop\ffmpeg-20160330-git-be746ae-win32-static\bin" |
#5
|
|||
|
|||
Re: how to download videos from yahoo!7 ?Quote:
[http @ 00000000004f80e0] HTTP error 403 Forbidden |
#6
|
|||
|
|||
Re: how to download videos from yahoo!7 ?Quote:
youtube-dl ffmpeg Now youtube-dl may be unnecessary for you since you seem to have the download URL, though it is missing aspects mine have. Normally I can just use youtube-dl to download these types of videos but on this site it did not work as usual. I should note that this method needs no Flash Player, nor actually browser (if you've got the link in hand) My steps To get the master .m3u8: youtube-dl: Code:
youtube-dl 'https://au.tv.yahoo.com/plus7/all-saints-season-1/-/watch/27065009/all-saints-season-1-episode-46/#page1' -g Code:
http://c.brightcove.com/services/mobile/streaming/index/master.m3u8?videoId=4652682300001 Download the link it gave you Code:
#EXTM3U #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=340000,RESOLUTION=480x270 https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=4653019613001&expiration=1459914060000&token=650a2b8e9a46a61b9385f1ea68838d1aa109d35e&videoId=4652682300001 #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=696000,RESOLUTION=480x270 https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=4653019673001&expiration=1459914060000&token=2cd5fa70bf6edd99cb94091ef735e1567cc06ae7&videoId=4652682300001 #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=996000,RESOLUTION=630x354 https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=4653025998001&expiration=1459914060000&token=0f47e8952120a0d3807e65c9bf1e1c6ef32ae10d&videoId=4652682300001 #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1328000,RESOLUTION=960x540 https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=4653026943001&expiration=1459914060000&token=3cf22eef848bd116811df2cbebec01cdd624908d&videoId=4652682300001 #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1628000,RESOLUTION=1280x720 https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=4653030887001&expiration=1459914060000&token=705efeaaedac7ee0dace23a5592dc0963983f898&videoId=4652682300001 To download do your FFMPEG command. Code:
ffmpeg -i "https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=4653026943001&expiration=1459914060000&token=3cf22eef848bd116811df2cbebec01cdd624908d&videoId=4652682300001" -c copy "All_Saints__Season_1__episode_46.ts" Differences between your link you posted, and mine: Code:
Yours https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=4653030887001&expiration=14 59814460000&token=7ee19f9f573cd8ec6cdf3a675ff7c46d f77c6848 Mine https://secure.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=4653026943001&expiration=1459914060000&token=3cf22eef848bd116811df2cbebec01cdd624908d&videoId=4652682300001 Now if that doesn't work, I'm not sure why, but these are possible reasons: 1. The m3u8 it gave you has expired and you must get the link again 2. It is geoblocked and you are not in Australia 3. You've got spaces in the URL somewhere they are not meant to be. Last edited by tergards : 04-02-2016 at 11:36 PM. Reason: More info |
Tags: rmtp |
Thread Tools | |
Display Modes | |
|
|