VideoHelp Forum


Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays! or rip iTunes movies!


Try StreamFab Downloader and download streaming video from Youtube, Netflix, Amazon! Download free trial.


+ Reply to Thread
Results 1 to 9 of 9
Thread
  1. Member
    Join Date
    Feb 2007
    Location
    Texas, United States
    Search Comp PM
    I'm stumped. I believe the video and audio streams come in fragments. I don't think they are encrypted (at least not in a way that requires a Content Decryption Module).

    I'd love to have these lectures in 1080p quality and I'm worried they'll be taken down at some point. Can someone please help? There are 7 lectures in all.

    https://www.microsoft.com/en-us/research/project/tuva-richard-feynman/

    Thanks in advance for any assistance.
    Last edited by hatchling; 9th Mar 2018 at 16:27. Reason: misspelling
    Quote Quote  
  2. Use youtube-dl with the following command lines:
    Code:
    youtube-dl https://projecttuva.streaming.mediaservices.windows.net/b8292783-c8ad-476c-8cd0-6f5965866918/Feynman-Main.ism/manifest(format=mpd-time-csf)
    youtube-dl https://projecttuva.streaming.mediaservices.windows.net/e6ec130a-ac61-4025-8cb7-b53077808aa8/Project_TUVA_Demo_070116.ism/manifest(format=mpd-time-csf)
    youtube-dl https://projecttuva.streaming.mediaservices.windows.net/5c3823db-d97f-4997-8c81-34920fbc2f03/L1_Law_of_Gravitation_23.97_1500kbps.ism/manifest(format=mpd-time-csf)
    youtube-dl https://projecttuva.streaming.mediaservices.windows.net/1c3da8e1-7292-40b1-adf0-519a015e2b1a/L2_Relation_of_Math_Physics_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl https://projecttuva.streaming.mediaservices.windows.net/9ca37f48-6b34-4e34-b181-1f71c5625d21/L3_The_Great_Conservation_Principles_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl https://projecttuva.streaming.mediaservices.windows.net/25d2ff6c-69b5-4e9d-81cd-53b4de1e8c0d/L4_Symmetry_in_Physical_Law_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl https://projecttuva.streaming.mediaservices.windows.net/f26d8b31-a91e-48ac-8de8-b8a0b2823072/L5_Additional_Material_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl https://projecttuva.streaming.mediaservices.windows.net/ba494a25-f128-4ac4-ba38-bdd6a619398b/L6_Probability_Uncertainty_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl https://projecttuva.streaming.mediaservices.windows.net/7d586169-9f83-4155-b053-6971464889cf/L7_Seeking_New_Laws_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    Oh, at least some of those will result in the same filename so you can't run all of them in one batch file. Either download one at a time and rename, or add an output filename spec to each line. For example:

    Code:
    youtube-dl -o "Cornell Feynman Lectures 0 Bill Gates Intro" https://projecttuva.streaming.mediaservices.windows.net/b8292783-c8ad-476c-8cd0-6f5965866918/Feynman-Main.ism/manifest(format=mpd-time-csf)
    youtube-dl -o "Cornell Feynman Lectures 0 Project Tuva Demo" https://projecttuva.streaming.mediaservices.windows.net/e6ec130a-ac61-4025-8cb7-b53077808aa8/Project_TUVA_Demo_070116.ism/manifest(format=mpd-time-csf)
    youtube-dl -o "Cornell Feynman Lectures 1 Law of Gravitation" https://projecttuva.streaming.mediaservices.windows.net/5c3823db-d97f-4997-8c81-34920fbc2f03/L1_Law_of_Gravitation_23.97_1500kbps.ism/manifest(format=mpd-time-csf)
    youtube-dl -o "Cornell Feynman Lectures 2 Relation of Math Phusics" https://projecttuva.streaming.mediaservices.windows.net/1c3da8e1-7292-40b1-adf0-519a015e2b1a/L2_Relation_of_Math_Physics_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl -o "Cornell Feynman Lectures 3 The Great Conservation Principles" https://projecttuva.streaming.mediaservices.windows.net/9ca37f48-6b34-4e34-b181-1f71c5625d21/L3_The_Great_Conservation_Principles_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl -o "Cornell Feynman Lectures 4 Symetry in Physical Law" https://projecttuva.streaming.mediaservices.windows.net/25d2ff6c-69b5-4e9d-81cd-53b4de1e8c0d/L4_Symmetry_in_Physical_Law_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl -o "Cornell Feynman Lectures 5 Additional Material" https://projecttuva.streaming.mediaservices.windows.net/f26d8b31-a91e-48ac-8de8-b8a0b2823072/L5_Additional_Material_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl -o "Cornell Feynman Lectures 6 Probability Uncertainty" https://projecttuva.streaming.mediaservices.windows.net/ba494a25-f128-4ac4-ba38-bdd6a619398b/L6_Probability_Uncertainty_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    youtube-dl -o "Cornell Feynman Lectures 7 Seeking New Laws" https://projecttuva.streaming.mediaservices.windows.net/7d586169-9f83-4155-b053-6971464889cf/L7_Seeking_New_Laws_960x720_23.97_1500k.ism/manifest(format=mpd-time-csf)
    I'm downloading them now with that batch file.
    Last edited by jagabo; 9th Mar 2018 at 19:28.
    Quote Quote  
  3. Member
    Join Date
    Feb 2007
    Location
    Texas, United States
    Search Comp PM
    jagabo, thank you so so much. It's working perfectly. I had no idea youtube-dl could handle this sort of thing.
    Quote Quote  
  4. Member
    Join Date
    Jul 2020
    Location
    romania
    Search Comp PM
    hi guys!
    i found this thread a while ago, downloaded the videos, but only now got around to watching them, and realised i don't have subtitles for them. english is obviously not my first language, and i have a problem with processing speech anyway, and those two combined mean i usually watch everything with english subtitles. so my question is: is there any way to download the subtitles as well? i checked project tuva, and they're there. i'm just not very good at this type of thing (video/online stuff), so i would appreciate your help. thanks in advance, and sorry if i'm breaking any of the forum's posting rules, or etiquette or i don't know. i hope i'm not.
    Quote Quote  
  5. Member
    Join Date
    Jul 2020
    Location
    romania
    Search Comp PM
    thank you so much, jagabo! both for the links, and for pointing me in the right direction, so i'm now able to learn something new. today, i both got some fish, and i was taught how to fish.
    Quote Quote  
  6. I improved the above script to get each video with its corresponding subtitle file plus a text description with matching (and corrected/completed) names.
    Requires youtube-dl and curl.
    Feynman.bat.txt
    If anyone else wants some fine and funny fysics fish...

    (Currently running it, hope I made no mistake.)

    EDIT : For those who prefer smaller fish, here's a modified script to download the videos in 960x720 at 3400kbps (instead of 1440x1080 at 6000kbps), which should be plenty enough considering the quality of the source footage and the nature of the videos (actually the quality is very similar even after resizing – see screenshots below). At this setting, each ~55min video has a size of ~1.37GB, and the total size is about 10GB (it would be almost double that in 1440x1080).
    Feynman 960x720.bat.txt

    Click image for larger version

Name:	Richard Feynman - Cornell Lectures - 1.f1_V_video_1.mp4.part - 00_00_44 - 1440x1080 6000kbps.png
Views:	138
Size:	1.02 MB
ID:	54410
    lecture 1, 00:00:44, 1440x1080 download
    Click image for larger version

Name:	Richard Feynman - Cornell Lectures - 1.mp4 - 00_00_44 - 960x720 3400kbps resized Lanczos 1440x10.png
Views:	109
Size:	744.1 KB
ID:	54411
    lecture 1, 00:00:44, 960x720 download, resized to 1440x1080 (Lanzos)
    Click image for larger version

Name:	Richard Feynman - Cornell Lectures - 1.f1_V_video_1.mp4.part - 00_06_27 - 1440x1080 6000kbps.png
Views:	222
Size:	901.8 KB
ID:	54412
    lecture 1, 00:06:27, 1440x1080 download
    Click image for larger version

Name:	Richard Feynman - Cornell Lectures - 1.mp4 - 00_06_27 - 960x720 3400kbps resized Lanczos 1440x10.png
Views:	176
Size:	612.1 KB
ID:	54413
    lecture 1, 00:06:27, 960x720 download, resized to 1440x1080 (Lanzos)
    Last edited by abolibibelot; 6th Aug 2020 at 17:07. Reason: added second script to download in 960x720, plus screenshots
    Quote Quote  
  7. Anonymous653
    Guest
    When I download the files using youtube-dl through terminal I get the file extension as ismv. I am not able to open these files. So how do I play them.
    Quote Quote  
  8. When I download the files using youtube-dl through terminal I get the file extension as ismv. I am not able to open these files. So how do I play them.

    Code:
    ffmpeg -i file.ismv -codec copy -f mp4 -y file.mp4
    Quote Quote  



Similar Threads

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