LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   General (https://www.linuxquestions.org/questions/general-10/)
-   -   An advice for a good old movie to watch on YouTube? (https://www.linuxquestions.org/questions/general-10/an-advice-for-a-good-old-movie-to-watch-on-youtube-4175706846/)

grumpyskeptic 09-22-2022 01:33 AM

The Scarlet Empress 1934

https://archive.org/details/asa-the-...g-with-marlene

https://archive.org/download/the-scarlet-empress This link redirects to the wrong page. Click on "Go to parent directory".



The Young In Heart 1938

https://archive.org/details/933-1F684/934-2.mp4

https://ia600807.us.archive.org/34/i...F684/934-2.mp4

https://www.youtube.com/watch?v=9hjvuCwrHvk

Comedy

grumpyskeptic 09-30-2022 06:03 AM

Faster Pussycat! Kill! Kill! 1965

https://www.youtube.com/watch?v=E18mxEfaOsM

https://archive.org/details/6.7-fast...965-russ-meyer

Horror


Yellow Sky 1948

https://www.youtube.com/watch?v=flEGjJ9xokE

https://www.youtube.com/watch?v=IU5xb6JH4ks

Western. Dislike the guns.

grumpyskeptic 10-06-2022 08:18 AM

Desire 1936

https://archive.org/details/a-wish-1936

https://archive.org/details/d554782113

Comedy



Cat Ballou 1965 Eastman Color

https://archive.org/details/mary59_gmx_910

Comedy western.

grumpyskeptic 10-14-2022 04:40 AM

How To Marry A Millionaire 1953 Technicolor

https://archive.org/details/ringostar742_yahoo_8211

https://archive.org/details/Zx821-1

Comedy



Parlor, Bedroom And Bath 1931

https://archive.org/details/ParlorBe...QualityUpgrade

Comedy

wpeckham 10-14-2022 11:35 AM

If "How to murder your wife" available on youtube?

grumpyskeptic 10-19-2022 08:12 AM

To Have And Have Not 1944

https://archive.org/details/THaHN

grumpyskeptic 10-19-2022 08:38 AM

Quote:

Originally Posted by wpeckham (Post 6386380)
If "How to murder your wife" available on youtube?

There's How To Murder A Millionaire (1990) https://www.youtube.com/watch?v=EFlH8M-UtqI Have never seen it and know nothing about it.

teckk 10-19-2022 02:30 PM

Cowboys, and more cowboys.

Code:

yt-dl -f <something> https://m.youtube.com/watch?v=DSZs4jp79uE -o TallStranger.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=QBk1rabSjcU -o CattleEmp.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=51yaa7O7lxk -o LastWagon.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=gdeAU2sfI8M -o TroupHook.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=jQYIdGDg_Vo -o DesertCboy.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=tq7WVgrrucY -o Draw.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=xMlGFfRVgvg -o Warbow.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=SghL2i20rxM -o Blaine.mp4"

yt-dl -f <something> https://m.youtube.com/watch?v=q5mPY_iTAhE -o SilverLode.mp4"

yt-dl -f <something> https://m.youtube.com/watch?v=lrtVju78YLM -o ExLawman.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=H1HtAbpGOE4 -o RioConchos.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=M3jWUHMU_vE -o TwoFlags.mp4


rokytnji 10-20-2022 12:11 PM

Genghis Khan (1965) 720p BluRay FULL MOVIE

https://www.youtube.com/watch?v=l70m6WV3eVo

The Long Duel 1967 ★ Yul Brunner ★ Trevor Howard ★ Full Movie HD

https://www.youtube.com/watch?v=Ljrgvth0A1w

Taras Bulba The Cossack 1962 English version complete rare movie

https://www.youtube.com/watch?v=0mFxQUPA23w

Taras Bulba 1936 French classic cossack film complete

https://www.youtube.com/watch?v=c8OoKIcRNTY

rokytnji 10-20-2022 12:25 PM

Star Trek: First Frontier (2020)

https://www.youtube.com/watch?v=SAlGf5Wfe4g

grumpyskeptic 10-21-2022 06:57 AM

Quote:

Originally Posted by teckk (Post 6387245)
Cowboys, and more cowboys.

Code:

yt-dl -f <something> https://m.youtube.com/watch?v=DSZs4jp79uE -o TallStranger.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=QBk1rabSjcU -o CattleEmp.mp4

yt-dl -f <something> https://m.youtube.com/watch?v=51yaa7O7lxk -o LastWagon.mp4
....


Thanks, am I correct in thinking that you copy the URL of the Youtube page you want to download into a terminal preceded by "yt-dl -f"? But what is the "something" please?

boughtonp 10-21-2022 08:00 AM

Quote:

Originally Posted by grumpyskeptic (Post 6387617)
Thanks, am I correct in thinking that you copy the URL of the Youtube page you want to download into a terminal preceded by "yt-dl -f"? But what is the "something" please?

I've never seen yt-dl command - afaik, it's either "youtube-dl" or "yt-dlp" (the latter is a more updated fork).

The "-f <something>" is unnecessary unless you want to change the format downloaded. (Also, given the behaviour of < and > in a command line, using "<something>" isn't a great move.) So to get the first of those you can just use, e.g:
Code:

yt-dlp 'https://www.youtube.com/watch?v=DSZs4jp79uE'
If you do want to change the format (e.g. because limited bandwidth or disk space), first use "youtube-dl -F 'URL'" to see the available formats, then use (e.g.) "-f 22" or whatever to select the right one. (Occasionally that means downloading video+audio formats and having ffmpeg merge them.)

Also, sometimes URLs require single quotes around them - I find it easier to just always single-quote URLs.


Bapun007 10-22-2022 11:32 AM

Ju-on: The Curse (2000) Eng Sub

https://www.youtube.com/watch?v=uuoJ...0insy&index=13

teckk 10-22-2022 03:19 PM

It's not youtube but these recent shows might be something that you enjoy @grumpyskeptic
Here is a sampling of some recent ones.
They are streaming with separate audio/video. ffmpeg will take care of it for you. Or use what you wish.

Look them up on imdb first.
https://m.imdb.com/title/tt8270592/reviews

Miss Scarlet and the Duke 2_1
Code:

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/miss-scarlet-duke/\
30b5ec4c-6aa3-47f2-83d1-d4619fd57346/2000318933/hd-16x9-mezzanine-1080p/\
mast5242-hls-16x9-1080p_85911.m3u8" -vn -c:a copy msd1.m4a

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/miss-scarlet-duke/\
30b5ec4c-6aa3-47f2-83d1-d4619fd57346/2000318933/hd-16x9-mezzanine-1080p/\
mast5242-hls-16x9-1080p-540p-2000k.m3u8" -an -c:v copy msd1.mp4

ffmpeg -i msd1.mp4 -i msd1.m4a -c:a copy -c:v copy MisScarlet2_1.mp4

Magpie murders 1
Code:

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/magpie-murders/\
6e24ef56-ca9b-4992-9f48-718825eb0a4d/2000319658/hd-16x9-mezzan\
ine-1080p/mast5248-hls-16x9-1080p_86709.m3u8" -vn -c:a copy mm1.m4a

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/magpie-murders/\
6e24ef56-ca9b-4992-9f48-718825eb0a4d/2000319658/hd-16x9-mezzan\
ine-1080p/mast5248-hls-16x9-1080p-540p-2000k.m3u8" -an -c:v copy mm1.mp4

ffmpeg -i mm1.mp4 -i mm1.m4a -c:a copy -c:v copy Magpie1.mp4

Annika 1
Code:

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/annika/c1170d72-462e-\
444c-a41b-de368d1296aa/2000289659/hd-16x9-mezzanine-1080p/annika_ep1\
-hls-16x9-1080p_56266.m3u8" -vn -c:a copy ann1.m4a

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/annika/c1170d72-462e-\
444c-a41b-de368d1296aa/2000289659/hd-16x9-mezzanine-1080p/annika_ep1\
-hls-16x9-1080p-540p-2000k.m3u8" -an -c:v copy ann1.mp4

ffmpeg -i ann1.mp4 -i ann1.m4a -c:a copy -c:v copy Annika1.mp4

Van der Valk 2_1
Code:

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/van-der-valk/4f54f40e-\
1daf-44fb-99ff-9d26f04335e8/2000315957/hd-16x9-mezzanine-1080p/mast52\
39-hls-16x9-1080p_82847.m3u8" -vn -c:a copy vd1.m4a

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/van-der-valk/4f54f40e-\
1daf-44fb-99ff-9d26f04335e8/2000315957/hd-16x9-mezzanine-1080p/mast52\
39-hls-16x9-1080p-540p-2000k.m3u8" -an -c:v copy vd1.mp4

ffmpeg -i vd1.mp4 -i vd1.m4a -c:a copy -c:v copy VanDerValk2_1.mp4

Guilt 2_1
Code:

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/guilt/db70e95a-efff-44ca\
-9f97-d81b934d34c3/2000311269/hd-16x9-mezzanine-1080p/mast5235_r-hls-16\
x9-1080p_78141.m3u8" -vn -c:a copy g1.m4a

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/guilt/db70e95a-efff-44ca\
-9f97-d81b934d34c3/2000311269/hd-16x9-mezzanine-1080p/mast5235_r-hls-16\
x9-1080p-540p-2000k.m3u8" -an -c:v copy g1.mp4

ffmpeg -i g1.m4a -i g1.mp4 -c:a copy -c:v copy Guilt2_1.mp4

The Boleyns 1
Code:

ffmpeg -i "https://ga.video.cdn.pbs.org/videos/boleyns-scandalous-family/dd64234e\
-5f2f-4f58-a719-73916bcc066e/2000311219/hd-16x9-mezzanine-1080p/bosf00101-hls-16x\
9-1080p-540p-2000k.m3u8" -c:a copy -c:v copy Boleyns1.mp4


DavidMcCann 10-23-2022 11:18 AM

The Lodger
A silent film from 1927! Hitchcock's first feature, staring Ivor Novello and June, and based on the best-seller by Marie Belloc Lowndes.

The Plank
A TV comedy involving two builders trying to get a plank to finish a floor. Every possible vaudeville or slapstick scene is played out, with almost no dialogue, by a cast of leading comedians and actors.

The Raven (1963 version)
A comedy horror starring Boris Karloff (who'd starred in a straight horror version in 1935), Vincent Price, Peter Lorre, and a young Jack Nicholson in an early role. Lorre ad-libbed a lot, including a few classic lines.


All times are GMT -5. The time now is 09:59 PM.