Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. seq -f "...hd4b.mp4/fragment-%g-v1.m4s" 10 > video-links.txt
  2.  
  3. var URLs = UI.panels.network._networkLogView._dataGrid._rootNode._flatNodes.map(n => n._request._url);
  4. copy(URLs.join('n'));
  5. URLs; // displays it in the console as an expandable array
  6.  
  7. wget -i "video-links.txt" -O "video.mp4" -B "...hd4b.mp4/"
  8.  
  9. ffmpeg -i video.mp4 -i audio.wav
  10. -c:v copy -c:a aac -strict experimental output.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement