Download TS files from video stream

前端 未结 14 1570
遥遥无期
遥遥无期 2020-12-22 17:55

Videos on most sites make use of progressive downloading, which means that the video is downloaded to my computer, and easy to trace. There are lots of extensions out there

相关标签:
14条回答
  • 2020-12-22 18:13

    Copy and paste one of the .ts video files into a new tab in Chrome. Remove the identifying number of the .ts file (0,1,2,3 etc. or whatever number it is) and change the extension from ".ts" to ".mp4". That should bring up the video file in your browser as usual.

    0 讨论(0)
  • 2020-12-22 18:13

    I came up with an efficient parralelized one-line that concatenate a sequence of .ts files into one .mp4 file using GNU Parallel:

     parallel -k curl https://example.com/video/seg-{}-f4-v1-a1.ts ::: {1..279} >> result.mp4
    

    The key is to replace the variant part of your url with {} and to set {a..b} with the lower and upper bound. That's it!

    0 讨论(0)
  • 2020-12-22 18:16

    Update:

    Stream Video Dowloader Chrome extension allows to download m3u8 streams seamlessly. Install and press play on video it will identify the stream.

    Addition to @aalhanane and @Micheal Espinola Jr

    As m3u8x is only available for windows. Once you have identified the m3u8 url you can also use Jdownloader2 or VLC Media Player to download and concatenate the stream.

    Jdownloader2: Just copy the m3u8 url when it the Jdownloader is open. It will recognize the stream in Linkgrabber tab.

    VLC 3:

    Open Network -> Paste m3u8 url -> Checkmark Streamoutput -> Select Settings. Choose output file, container , video and audio encoding. (e.g output.mp4, container: mpeg4, video: h264, audio: mp4a) Start Stream. It will not play the video, but encode it, showing the encoding progress by moving the video play back progress bar.

    0 讨论(0)
  • 2020-12-22 18:22

    You would need to download all of the transport stream (.ts) files, and concatenate them into a single mpeg for playback. Transport streams such as this have associated playlist files (.m3u8) that list all of the .ts files that you need to download and concatenate. If available, there may be a secondary .m3u8 playlist that will separately list subtitle steam files (.vtt).

    0 讨论(0)
  • 2020-12-22 18:23

    I made some changes to dina's answer to avoid attempting to download/combine 1200 parts if there aren't that many.

    I also found it helpful to sort by waterfall in the network tab of chrome. This will sort by the time the files are downloaded, so when you are streaming a video the most recently downloaded parts will be at the top, making it easy to find the .ts links.

    #!/bin/bash
    
    # Name of the containing folder
    GROUP="My Videos"
    
    # Example link: https://vids.net/ABCAED/AADDCDE/m3u8/AADDCDE/AADDCDE_0.ts
    # Insert below as: https://vids.net/ABCAED/AADDCDE/m3u8/AADDCDE/AADDCDE
    
    # INSERT LINKS TO VIDEOS HERE
    LINK=(
    'Title for the video link'
    'https://vids.net/ABCAED/AADDCDE/m3u8/AADDCDE/AADDCDE'
    'Title for the next video'
    'https://vids.net/EECEADFE/EECEADFE/m3u8/EECEADFE/EECEADFE'
    )
    
    # ------------------------------------------------------------------------------
    mkdir "$GROUP"
    cd "$GROUP"
    
    I=0
    while [ $I -lt ${#LINK[@]} ]
    do
      # create folder for streaming media
      TITLE=${LINK[$I]}
      mkdir "$TITLE"
      cd "$TITLE"
      mkdir 'parts'
      cd 'parts'
    
      J=$((I + 1))
      URL=${LINK[$J]}
    
      I=$((I + 2))
    
      DIR="${URL##*/}"
    
      # download all streaming media parts
      VID=-1
      while [ $? -eq 0 ];
      do
        VID=$((VID + 1))
        wget $URL'_'$VID.ts
      done
    
      # combine parts
      COUNTER=0
      while [  $COUNTER -lt $VID ]; do
        echo $DIR'_'$COUNTER.ts | tr " " "\n" >> tslist
        let COUNTER=COUNTER+1
      done
      while read line; do cat $line >> $TITLE.ts; done < tslist
    
      rm -rf tslist
      mv "$TITLE.ts" "../$TITLE.ts"
    
      cd ..
      rm -rf 'parts'
      cd ..
    
    done
    
    0 讨论(0)
  • 2020-12-22 18:23

    You can use Xtreme Download Manager(XDM) software for this. This software can download from any site in this format. Even this software can change the ts file format. You only need to change the format when downloading.

    like:https://www.videohelp.com/software/Xtreme-Download-Manager-

    0 讨论(0)
提交回复
热议问题