VideoHelp Forum




+ Reply to Thread
Page 4 of 6
FirstFirst ... 2 3 4 5 6 LastLast
Results 91 to 120 of 179
  1. Member
    Join Date
    Sep 2015
    Location
    Atlanta, Georgia, USA
    Search Comp PM
    Moet, any ideas on my video?
    Quote Quote  
  2. Originally Posted by wb8nbs View Post
    PBS used RTMP last year. In 2013 they are using Adobe HDS streaming. This breaks up the video into hundreds of ten second files. There is a manifest file (.M3U8) file that lists all the (.TS) files that make up the video. You can find and copy the M3U8 URL by accessing the video in Firefox then before you click the forward button to start playing it, open a network debug window (Tools -> Web Developer -> Network). Click forward and then stop it as soon as it starts playing. You can then copy the URL from the Network window and paste the URL into ffmpeg or better avconv which understand the M3U8 format to download the stream. Example:

    avconv -i http://ga.video.cdn.pbs.org/cove2.0/woodwrights-shop/e7b30a81-e9b6-4679-b829-13ca12424...-hls-800k.m3u8 wows3301800k.mp4

    Disclaimer: this works in Ubuntu linux. It is probably the same in windows.

    I am very happy with this procedure. For those that consider this piracy (I don't), consider that on a slow DSL line like mine, the only way to see these videos in high definition is to download the stream and replay it from the hard drive. On line playback from PBS is awful especially during network busy times.
    Trying to get this video: http://www.pbs.org/wgbh/pages/frontline/sports/league-of-denial/the-frontline-intervie...-bennet-omalu/

    How I found the m3u8 file
    https://forum.videohelp.com/images/imgfiles/G52SsRl.png (chrome developer tools 'Network' tab, after hitting play, HTTP 200)

    Input
    Code:
    avconv -i http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-64-2500k.m3u8 test.mp4
    Output
    Code:
    me@vm-ubuntu:~$ avconv -i http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b 63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-64-2500k.m3u8 test.mp4
    avconv version 9.18-6:9.18-0ubuntu0.14.04.1, Copyright (c) 2000-2014 the Libav developers
      built on Mar 16 2015 13:19:10 with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1)
    Format detected only with low score of 25, misdetection possible!
    [hls,applehttp @ 0x230b8e0] max_analyze_duration reached
    Input #0, hls,applehttp, from 'http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-64-2500k.m3u8':
      Duration: 00:54:44.00, bitrate: 0 kb/s
        Stream #0.0: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 560000
        Stream #0.1: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 560000
        Stream #0.2: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 960000
        Stream #0.3: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 960000
        Stream #0.4: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 1360000
        Stream #0.5: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 1360000
        Stream #0.6: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 2660000
        Stream #0.7: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 2660000
        Stream #0.8: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 206000
        Stream #0.9: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 206000
        Stream #0.10: Audio: aac, 22050 Hz, stereo, fltp
        Metadata:
          variant_bitrate : 64000
        Stream #0.11: Video: mjpeg, yuvj420p, 320x480, 90k tbn
        Metadata:
          variant_bitrate : 64000
    [libx264 @ 0x34d1520] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX
    [libx264 @ 0x34d1520] profile High, level 2.1
    [libx264 @ 0x34d1520] 264 - core 142 r2389 956c8d8 - H.264/MPEG-4 AVC codec - Copyleft 2003-2014 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=12 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.25 aq=1:1.00
    encoder 'aac' is experimental and might produce bad results.
    Add '-strict experimental' if you want to use it.
    me@vm-ubuntu:~$
    Did it work? cant tell...

    Code:
    me@vm-ubuntu:~$ ls -alh
    -rw-rw-r-- 1 me  me     0 Sep 18 20:13 test.mp4
    No it appears it did not work, 0 byte file... damn.

    If I replace the .m3u8 extension with .mp4, I get HTTP 403 Forbidden (Not Authorized). .m3u8 is the only file extension I can get a HTTP 200 on.

    The file contents look like this
    Code:
    #EXTM3U
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=560000,CODECS="avc1.4d001f, mp4a.40.5",RESOLUTION=416x234
    omalumez-16x9-hls-400k.m3u8
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=960000,CODECS="avc1.4d001f, mp4a.40.5",RESOLUTION=640x360
    omalumez-16x9-hls-800k.m3u8
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1360000,CODECS="avc1.4d001f, mp4a.40.5",RESOLUTION=854x480
    omalumez-16x9-hls-1200k.m3u8
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=2660000,CODECS="avc1.4d001f, mp4a.40.5",RESOLUTION=1280x720
    omalumez-16x9-hls-2500k.m3u8
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=206000,CODECS="avc1.4d001f, mp4a.40.5",RESOLUTION=320x180
    omalumez-16x9-hls-150k.m3u8
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=64000,CODECS="mp4a.40.5"
    omalumez-16x9-hls-64k.m3u8
    If I open one of the other .m3u8 files, ex: omalumez-16x9-hls-1200k.m3u8
    Code:
    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-PLAYLIST-TYPE:VOD
    #EXT-X-TARGETDURATION:10
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00001.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00002.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00003.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00004.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00005.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00006.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00007.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00008.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00009.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00010.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00011.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00012.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00013.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00014.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00015.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00016.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00017.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00018.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00019.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00020.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00021.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00022.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00023.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00024.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00025.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00026.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00027.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00028.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00029.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00030.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00031.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00032.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00033.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00034.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00035.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00036.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00037.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00038.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00039.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00040.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00041.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00042.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00043.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00044.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00045.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00046.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00047.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00048.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00049.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00050.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00051.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00052.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00053.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00054.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00055.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00056.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00057.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00058.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00059.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00060.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00061.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00062.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00063.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00064.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00065.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00066.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00067.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00068.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00069.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00070.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00071.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00072.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00073.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00074.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00075.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00076.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00077.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00078.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00079.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00080.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00081.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00082.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00083.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00084.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00085.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00086.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00087.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00088.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00089.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00090.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00091.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00092.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00093.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00094.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00095.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00096.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00097.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00098.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00099.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00100.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00101.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00102.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00103.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00104.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00105.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00106.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00107.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00108.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00109.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00110.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00111.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00112.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00113.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00114.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00115.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00116.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00117.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00118.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00119.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00120.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00121.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00122.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00123.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00124.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00125.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00126.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00127.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00128.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00129.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00130.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00131.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00132.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00133.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00134.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00135.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00136.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00137.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00138.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00139.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00140.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00141.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00142.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00143.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00144.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00145.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00146.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00147.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00148.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00149.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00150.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00151.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00152.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00153.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00154.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00155.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00156.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00157.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00158.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00159.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00160.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00161.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00162.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00163.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00164.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00165.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00166.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00167.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00168.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00169.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00170.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00171.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00172.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00173.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00174.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00175.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00176.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00177.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00178.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00179.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00180.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00181.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00182.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00183.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00184.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00185.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00186.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00187.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00188.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00189.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00190.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00191.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00192.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00193.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00194.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00195.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00196.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00197.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00198.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00199.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00200.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00201.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00202.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00203.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00204.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00205.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00206.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00207.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00208.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00209.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00210.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00211.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00212.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00213.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00214.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00215.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00216.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00217.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00218.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00219.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00220.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00221.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00222.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00223.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00224.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00225.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00226.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00227.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00228.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00229.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00230.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00231.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00232.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00233.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00234.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00235.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00236.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00237.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00238.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00239.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00240.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00241.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00242.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00243.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00244.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00245.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00246.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00247.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00248.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00249.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00250.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00251.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00252.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00253.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00254.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00255.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00256.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00257.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00258.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00259.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00260.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00261.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00262.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00263.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00264.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00265.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00266.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00267.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00268.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00269.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00270.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00271.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00272.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00273.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00274.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00275.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00276.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00277.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00278.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00279.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00280.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00281.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00282.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00283.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00284.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00285.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00286.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00287.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00288.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00289.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00290.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00291.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00292.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00293.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00294.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00295.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00296.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00297.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00298.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00299.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00300.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00301.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00302.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00303.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00304.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00305.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00306.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00307.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00308.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00309.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00310.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00311.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00312.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00313.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00314.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00315.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00316.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00317.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00318.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00319.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00320.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00321.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00322.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00323.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00324.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00325.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00326.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00327.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00328.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00329.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00330.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00331.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00332.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00333.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00334.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00335.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00336.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00337.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00338.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00339.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00340.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00341.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00342.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00343.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00344.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00345.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00346.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00347.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00348.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00349.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00350.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00351.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00352.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00353.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00354.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00355.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00356.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00357.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00358.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00359.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00360.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00361.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00362.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00363.ts
    #EXTINF:9.9766,
    omalumez-16x9-hls-1200k-00364.ts
    #EXTINF:8.9423,
    omalumez-16x9-hls-1200k-00365.ts
    #ZEN-TOTAL-DURATION:3640.4247
    #EXT-X-ENDLIST
    Code:
    me@vm-ubuntu:~$ avconv -i http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b 63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-2500k.m3u8 asdf.mp4
    avconv version 9.18-6:9.18-0ubuntu0.14.04.1, Copyright (c) 2000-2014 the Libav developers
      built on Mar 16 2015 13:19:10 with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1)
    Input #0, hls,applehttp, from 'http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-2500k.m3u8':
      Duration: 00:54:44.00, start: 10.000000, bitrate: N/A
        Stream #0.0: Video: h264 (Main), yuv420p, 1280x720 [PAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
        Stream #0.1: Audio: aac, 44100 Hz, stereo, fltp
    [libx264 @ 0x10fa780] using SAR=1/1
    [libx264 @ 0x10fa780] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX
    [libx264 @ 0x10fa780] profile High, level 3.1
    [libx264 @ 0x10fa780] 264 - core 142 r2389 956c8d8 - H.264/MPEG-4 AVC codec - Copyleft 2003-2014 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=12 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.25 aq=1:1.00
    encoder 'aac' is experimental and might produce bad results.
    Add '-strict experimental' if you want to use it.
    me@vm-ubuntu:~$
    0 byte file again


    Any ideas?
    Last edited by Meruem; 18th Sep 2015 at 22:58.
    Quote Quote  
  3. Originally Posted by Meruem View Post
    Originally Posted by wb8nbs View Post
    PBS used RTMP last year. In 2013 they are using Adobe HDS streaming. This breaks up the video into hundreds of ten second files. There is a manifest file (.M3U8) file that lists all the (.TS) files that make up the video. You can find and copy the M3U8 URL by accessing the video in Firefox then before you click the forward button to start playing it, open a network debug window (Tools -> Web Developer -> Network). Click forward and then stop it as soon as it starts playing. You can then copy the URL from the Network window and paste the URL into ffmpeg or better avconv which understand the M3U8 format to download the stream. Example:

    avconv -i http://ga.video.cdn.pbs.org/cove2.0/woodwrights-shop/e7b30a81-e9b6-4679-b829-13ca12424...-hls-800k.m3u8 wows3301800k.mp4

    Disclaimer: this works in Ubuntu linux. It is probably the same in windows.

    I am very happy with this procedure. For those that consider this piracy (I don't), consider that on a slow DSL line like mine, the only way to see these videos in high definition is to download the stream and replay it from the hard drive. On line playback from PBS is awful especially during network busy times.
    Trying to get this video: http://www.pbs.org/wgbh/pages/frontline/sports/league-of-denial/the-frontline-intervie...-bennet-omalu/

    How I found the m3u8 file
    https://forum.videohelp.com/images/imgfiles/G52SsRl.png (chrome developer tools 'Network' tab, after hitting play, HTTP 200)

    Input
    Code:
    avconv -i http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-64-2500k.m3u8 test.mp4
    Output
    Code:
    me@vm-ubuntu:~$ avconv -i http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b 63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-64-2500k.m3u8 test.mp4
    avconv version 9.18-6:9.18-0ubuntu0.14.04.1, Copyright (c) 2000-2014 the Libav developers
      built on Mar 16 2015 13:19:10 with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1)
    Format detected only with low score of 25, misdetection possible!
    [hls,applehttp @ 0x230b8e0] max_analyze_duration reached
    Input #0, hls,applehttp, from 'http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-64-2500k.m3u8':
      Duration: 00:54:44.00, bitrate: 0 kb/s
        Stream #0.0: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 560000
        Stream #0.1: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 560000
        Stream #0.2: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 960000
        Stream #0.3: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 960000
        Stream #0.4: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 1360000
        Stream #0.5: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 1360000
        Stream #0.6: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 2660000
        Stream #0.7: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 2660000
        Stream #0.8: Video: h264, 90k tbn
        Metadata:
          variant_bitrate : 206000
        Stream #0.9: Audio: aac, 0 channels, fltp
        Metadata:
          variant_bitrate : 206000
        Stream #0.10: Audio: aac, 22050 Hz, stereo, fltp
        Metadata:
          variant_bitrate : 64000
        Stream #0.11: Video: mjpeg, yuvj420p, 320x480, 90k tbn
        Metadata:
          variant_bitrate : 64000
    [libx264 @ 0x34d1520] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX
    [libx264 @ 0x34d1520] profile High, level 2.1
    [libx264 @ 0x34d1520] 264 - core 142 r2389 956c8d8 - H.264/MPEG-4 AVC codec - Copyleft 2003-2014 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=12 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.25 aq=1:1.00
    encoder 'aac' is experimental and might produce bad results.
    Add '-strict experimental' if you want to use it.
    me@vm-ubuntu:~$
    Did it work? cant tell...

    Code:
    me@vm-ubuntu:~$ ls -alh
    -rw-rw-r-- 1 me  me     0 Sep 18 20:13 test.mp4
    No it appears it did not work, 0 byte file... damn.

    Any ideas?
    hi
    direct link
    Code:
    http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-mp4-2500k.mp4
    or format .ts

    Code:
    livestreamer "hls://http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-2500k.m3u8" best -o video.ts

    Code:
    ffmpeg -i "http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-2500k.m3u8"  -c copy video.ts
    Code:
    avconv -i "http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-2500k.m3u8"  -c copy video.ts


    or format .mp4

    Code:
    ffmpeg -i "http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-2500k.m3u8" -bsf:a aac_adtstoasc  -c copy video.mp4

    or

    Code:
    avconv -i "http://ga.video.cdn.pbs.org/videos/frontline/a89d7494-7e08-4bc2-8b63-767108cb1caf/43334/hd-mezzanine-16x9/omalumez-16x9-hls-2500k.m3u8" -bsf:a aac_adtstoasc  -c copy video.mp4
    Quote Quote  
  4. wow that was easy, thank you

    very helpful post
    Quote Quote  
  5. Member
    Join Date
    Sep 2015
    Location
    Birmingham AL
    Search Comp PM
    Would it be possible for someone to help me out with a link for this video? Highest quality if possible but anything would be helpful. My boss appears in the video and wants a copy.

    http://video.pbs.org/viralplayer/2365553777/
    Quote Quote  
  6. Originally Posted by RansomSAG View Post
    Would it be possible for someone to help me out with a link for this video? Highest quality if possible but anything would be helpful. My boss appears in the video and wants a copy.

    http://video.pbs.org/viralplayer/2365553777/
    hi
    direct link

    Code:
    http://ga.video.cdn.pbs.org/videos/religion-and-ethics-newsweekly/8ffe7be4-7a40-49d1-b182-38b6a6cb4611/199236/hd-mezzanine-16x9/925f8afa_payday-lenders-cove-pbs-mezzanine-spec-16x9-mp4-2500k.mp4
    like this this post

    https://forum.videohelp.com/threads/374166-Download-Flash-Video-from-PBS
    Quote Quote  
  7. Member
    Join Date
    Nov 2015
    Location
    714 S San Antonio St, Port Lavaca, TX, USA, 77979
    Search Comp PM
    Trying to get these videos:
    video.klru.tv/video/2365592475/
    and
    video.ket.org/video/1459183868/
    help please
    Quote Quote  
  8. ...
    Last edited by sysanin; 15th Nov 2015 at 14:33.
    Quote Quote  
  9. Originally Posted by thegeet View Post
    Trying to get these videos:
    video.klru.tv/video/2365592475/
    and
    video.ket.org/video/1459183868/
    help please

    Direct download links for videos and captions:
    1.
    http://ga.video.cdn.pbs.org/videos/austin-city-limits/c1662742-3e51-4f16-92f2-fc3a2859...4-baseline.mp4

    http://ga.video.cdn.pbs.org/captions/austin-city-limits/c1662742-3e51-4f16-92f2-fc3a28...50_Encoded.srt


    2.
    http://urs.pbs.org/redirect/595c235574a8420fa953eb995bf9654d/
    Last edited by rScot; 8th Nov 2015 at 01:40.
    Quote Quote  
  10. Member Emeritus
    Join Date
    May 2014
    Search PM
    4500k and 6500k is available for newest videos.
    Quote Quote  
  11. Member
    Join Date
    Nov 2015
    Location
    714 S San Antonio St, Port Lavaca, TX, USA, 77979
    Search Comp PM
    Originally Posted by rScot View Post
    Originally Posted by thegeet View Post
    Trying to get these videos:
    video.klru.tv/video/2365592475/
    and
    video.ket.org/video/1459183868/
    help please

    Direct download links for videos and captions:
    1.
    http://ga.video.cdn.pbs.org/videos/austin-city-limits/c1662742-3e51-4f16-92f2-fc3a2859...4-baseline.mp4

    http://ga.video.cdn.pbs.org/captions/austin-city-limits/c1662742-3e51-4f16-92f2-fc3a28...50_Encoded.srt


    2.
    http://urs.pbs.org/redirect/595c235574a8420fa953eb995bf9654d/
    Thank you so much
    Quote Quote  
  12. Member
    Join Date
    Nov 2015
    Location
    714 S San Antonio St, Port Lavaca, TX, USA, 77979
    Search Comp PM
    The video info method worked better.
    Quote Quote  
  13. Member
    Join Date
    Nov 2015
    Location
    714 S San Antonio St, Port Lavaca, TX, USA, 77979
    Search Comp PM
    Help I can't download any more:

    watch.thirteen.org/video/2330287477/
    video.kcts9.org/video/2365068345/
    help asap
    Quote Quote  
  14. Originally Posted by thegeet View Post
    Help I can't download any more:

    watch.thirteen.org/video/2330287477/
    video.kcts9.org/video/2365068345/
    help asap
    hi


    Code:
    http://ga.video.cdn.pbs.org/videos/thirteen-specials/af970c26-cef4-4870-8339-c16dbf1ccba1/107100/hd-mezzanine-16x9/fmml-000105-mlkjr2-stream-web-16x9.mp4
    Code:
    http://ga.video.cdn.pbs.org/videos/kcts-9-documentaries/d0db4630-87ed-47f5-8e83-bc6312e6b5f3/37742/hd-mezzanine-16x9/latinos-master2-16x9-mp4-2500k.mp4
    Quote Quote  
  15. Member
    Join Date
    Nov 2015
    Location
    714 S San Antonio St, Port Lavaca, TX, USA, 77979
    Search Comp PM
    Originally Posted by biezom View Post
    Originally Posted by thegeet View Post
    Help I can't download any more:

    watch.thirteen.org/video/2330287477/
    video.kcts9.org/video/2365068345/
    help asap
    hi


    Code:
    http://ga.video.cdn.pbs.org/videos/thirteen-specials/af970c26-cef4-4870-8339-c16dbf1ccba1/107100/hd-mezzanine-16x9/fmml-000105-mlkjr2-stream-web-16x9.mp4
    Code:
    http://ga.video.cdn.pbs.org/videos/kcts-9-documentaries/d0db4630-87ed-47f5-8e83-bc6312e6b5f3/37742/hd-mezzanine-16x9/latinos-master2-16x9-mp4-2500k.mp4
    TNX very much
    Quote Quote  
  16. Hi all...

    I have tried SEVERAL of the methods listed above to no avail. I would very much appreciate any help I can get downloading this video:
    http://video.pbs.org/video/2365596258/

    I would especially like it in HD or a higher quality, if I could get it. (I was at this concert, and would love to show it to my family.)

    Any assistance would be amazing! Thank you!

    Edit: I managed to get here, if this is helpful: http://player.pbs.org/portalplayer/2365596258/?uid=&clientId=310fcb44-9e9d-11e5-baa5-22000b8c0012
    Quote Quote  
  17. Originally Posted by Skinnamirink View Post
    Hi all...

    I have tried SEVERAL of the methods listed above to no avail. I would very much appreciate any help I can get downloading this video:
    http://video.pbs.org/video/2365596258/

    I would especially like it in HD or a higher quality, if I could get it. (I was at this concert, and would love to show it to my family.)

    Any assistance would be amazing! Thank you!

    Edit: I managed to get here, if this is helpful: http://player.pbs.org/portalplayer/2365596258/?uid=&clientId=310fcb44-9e9d-11e5-baa5-22000b8c0012

    hi
    Code:
    http://ga.video.cdn.pbs.org/videos/lincoln-center/f021566a-b56b-4376-ad98-50824539382f/208480/hd-mezzanine-16x9/570c44b1_lvlc4006-16x9-mp4-2500k.mp4
    Quote Quote  
  18. Originally Posted by biezom View Post
    Originally Posted by Skinnamirink View Post
    Hi all...

    I have tried SEVERAL of the methods listed above to no avail. I would very much appreciate any help I can get downloading this video:
    http://video.pbs.org/video/2365596258/

    I would especially like it in HD or a higher quality, if I could get it. (I was at this concert, and would love to show it to my family.)

    Any assistance would be amazing! Thank you!

    Edit: I managed to get here, if this is helpful: http://player.pbs.org/portalplayer/2365596258/?uid=&clientId=310fcb44-9e9d-11e5-baa5-22000b8c0012

    hi
    Code:
    http://ga.video.cdn.pbs.org/videos/lincoln-center/f021566a-b56b-4376-ad98-50824539382f/208480/hd-mezzanine-16x9/570c44b1_lvlc4006-16x9-mp4-2500k.mp4
    THANK YOU so incredibly much!!!!
    Quote Quote  
  19. Member
    Join Date
    Nov 2015
    Location
    714 S San Antonio St, Port Lavaca, TX, USA, 77979
    Search Comp PM
    video.ket.org/video/2365622595/
    It asks me for a pass
    Quote Quote  
  20. Originally Posted by thegeet View Post
    video.ket.org/video/2365622595/
    It asks me for a pass
    given below is code and captions:

    Code:
    http://ga.video.cdn.pbs.org/videos/comment-kentucky/a02e01fd-99ee-4aa1-b934-c15b5068e9e6/214098/hd-mezzanine-16x9/0b2e8986_kcomm_004205_mezz_5000-16x9-mp4-2500k.mp4
    Code:
    http://ga.video.cdn.pbs.org/captions/comment-kentucky/a02e01fd-99ee-4aa1-b934-c15b5068e9e6/captions/476364_Encoded.srt
    Quote Quote  
  21. Hi, I am recently trying the methods of downloading the subtitles from PBS, the "videoInfo" way finding the captions seems not working.
    I have no problem getting the .m3u8 address and the .ts files, just the subtitles problem, I seem so far can't find a way to solve it.
    Quote Quote  
  22. Member Emeritus
    Join Date
    May 2014
    Search PM
    Originally Posted by rcsstart View Post
    Hi, I am recently trying the methods of downloading the subtitles from PBS, the "videoInfo" way finding the captions seems not working.
    I have no problem getting the .m3u8 address and the .ts files, just the subtitles problem, I seem so far can't find a way to solve it.
    videoInfo is still present. The server name has changed from video.pbs.org to player.pbs.org
    Quote Quote  
  23. Member
    Join Date
    Aug 2002
    Location
    South Florida
    Search Comp PM
    Use WM Capture. It gets them all.
    Quote Quote  
  24. Originally Posted by ponens View Post
    Originally Posted by rcsstart View Post
    Hi, I am recently trying the methods of downloading the subtitles from PBS, the "videoInfo" way finding the captions seems not working.
    I have no problem getting the .m3u8 address and the .ts files, just the subtitles problem, I seem so far can't find a way to solve it.
    videoInfo is still present. The server name has changed from video.pbs.org to player.pbs.org
    Thanks so much, I've got it sorted out.
    Quote Quote  
  25. Member
    Join Date
    Jan 2011
    Location
    Middle US
    Search Comp PM
    I've been downloading the Time Scanner series. I've been able to get 2 of them just fine and have found the info on the 3rd, but I can't find the info on the other 3 since they have "expired". Using the videoInfo page I was able to download the subtitles from 2 of them. Since the subtitles are still there I thought that the videos probably are too. But I can't find them. The redirect from the videoInfo page responds "Gone Redirect is no longer available".

    I would appreciate any help in finding the URL's for downloading these.
    Thank you.

    The episodes I need help with are:
    Egyptian Pyramids
    Code:
    http://www.pbs.org/video/2365280998/
    http://player.pbs.org/videoInfo//2365280998/
    St. Paul's Cathedral
    Code:
    http://www.pbs.org/video/2365281660/
    http://player.pbs.org/videoInfo/2365281660/
    Petra
    I can't find any URL for it.

    PS: pones: Thanks for the new server name on where to find the videoInfo directory.
    Quote Quote  
  26. I have found that after the PBS video has expired, if you have the correct URL download, you can still download the video. Since you have the subtitle URL, "maybe" ponens or biezom will help you find the video URL from the subtitle URL.
    Quote Quote  
  27. Member
    Join Date
    Jan 2016
    Location
    Canada
    Search PM
    Hi,
    Looking for help downloading http://www.pbs.org/wgbh/pages/frontline/the-confessions/
    Also looking for help on how to learn to do this myself. Cheers
    Quote Quote  
  28. Member ricardouk's Avatar
    Join Date
    Mar 2005
    Location
    Portugal
    Search Comp PM
    Originally Posted by khaldu106 View Post
    use youtube-dl or any of its gui's

    Code:
    youtube-dl http://www.pbs.org/wgbh/pages/frontline/the-confessions/
    I love it when a plan comes together!
    Quote Quote  
  29. Member
    Join Date
    Jan 2016
    Location
    Melbourne, Australia
    Search PM
    Hello,

    I've tried various methods shown in this thread for downloading from PBS with none of them working for me, so I'm wondering if someone could just get the 720p MP4 link to this video for me http://www.pbs.org/video/2365637124/

    Cheers
    Last edited by josho999; 11th Jan 2016 at 04:58.
    Quote Quote  
  30. Originally Posted by josho999 View Post
    Hello,

    I've tried various methods shown in this thread for downloading from PBS with none of them working for me, so I'm wondering if someone could just get the 720p MP4 link to this video for me http://www.pbs.org/video/2365637124/

    Cheers
    hi

    Code:
    http://ga.video.cdn.pbs.org/videos/austin-city-limits/c606f7f1-4249-4c1a-8c3c-9340c29f6e88/217960/hd-1080p-mezzanine-16x9/6ccbcfc9_aucl4108_r-16x9-mp4-2500k.mp4
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!