+ Reply to Thread
Page 2 of 2 FirstFirst 12
Results 16 to 23 of 23

Thread: Best Software For Online Videos Downloading

  1. #16
    Member mammamia11's Avatar
    Join Date
    29.02.08
    Location
    street
    P2P Client
    vuze
    Posts
    328
    Activity Longevity
    3/20 19/20
    Today Posts
    0/5 ssssss328
    Quote Originally Posted by anon View Post
    Interestingly, JD used to have this feature, but quietly removed it at some point (presumably because it was out of scope as you mentioned). It still uses ffmpeg in the background to combine video chunks and audio stream into a single file.
    ah i didnt know that, i just downloaded and tried J-downloader after DarkSaibot mentioned it and i wanted to see the deferens :)
    When you get to hell, tell em' Duke sent ya
    Reply With QuoteReply With Quote
    Thanks

  2. Who Said Thanks:


  3. #17
    Elite
    DarkSaibot v.1.3.10's Avatar
    Join Date
    15.11.08
    Location
    Black Flag
    P2P Client
    Anonymous
    Posts
    1,767
    Activity Longevity
    2/20 18/20
    Today Posts
    0/5 sssss1767
    Quote Originally Posted by anon View Post
    The solution is usually blocking their network access, but that obviously wouldn't be an option here...



    Instead of pasting a link in a window and clicking a download button, you type something like this in a terminal and press Enter.

    Code:
    yt-dlp https://www.youtube.com/watch?v=ABCDEFGHIJK
    worked in the past ,but now it seems like is still working only if i unplug the cable or disable the network

    common to much work for grandpa,just to download some videos,where alternatives exists without have to know how to code

    I speak for my own experience , i made many mp3 rips from youtube to my usb flash using win11, never had problems. second thing, J-downloader is only a download tool, cant be compared to 4k video because the one i use can do much more stuff then downloading.
    from where did you get the version ? to be sure i'm not getting an infected one
    Reply With QuoteReply With Quote
    Thanks

  4. #18
    Member mammamia11's Avatar
    Join Date
    29.02.08
    Location
    street
    P2P Client
    vuze
    Posts
    328
    Activity Longevity
    3/20 19/20
    Today Posts
    0/5 ssssss328
    Quote Originally Posted by DarkSaibot v.1.3.10 View Post
    worked in the past ,but now it seems like is still working only if i unplug the cable or disable the network



    common to much work for grandpa,just to download some videos,where alternatives exists without have to know how to code



    from where did you get the version ? to be sure i'm not getting an infected one
    from filecr, they have the latest version, torrent sites have old one from 2022
    When you get to hell, tell em' Duke sent ya
    Reply With QuoteReply With Quote
    Thanks

  5. Who Said Thanks:


  6. #19
    Elite
    DarkSaibot v.1.3.10's Avatar
    Join Date
    15.11.08
    Location
    Black Flag
    P2P Client
    Anonymous
    Posts
    1,767
    Activity Longevity
    2/20 18/20
    Today Posts
    0/5 sssss1767
    interesting website,thanks
    Reply With QuoteReply With Quote
    Thanks

  7. #20
    H265's Avatar
    Join Date
    26.05.13
    Location
    Tengoku
    P2P Client
    ¯\_(ツ)_/¯
    Posts
    422
    Activity Longevity
    2/20 13/20
    Today Posts
    0/5 ssssss422
    I'm trying to download some videos from cbtnuggets using idm and i get this error message. is it possible to bypass this?

    Click image for larger version. 

Name:	forbidden.png 
Views:	6 
Size:	6.2 KB 
ID:	21804
    Reply With QuoteReply With Quote
    Thanks

  8. #21
    buttnudge's Avatar
    Join Date
    26.06.24
    Location
    Romania/Italy
    P2P Client
    rtorrent/rutorrent
    Posts
    2
    Activity Longevity
    0/20 0/20
    Today Posts
    3/5 ssssssss2
    I'd like to mention that people using yt-dlp should probably also use aria2 along with it. Big sites especially YouTube throttle the shit out of your download speed. I actually have a nifty bash script for this. I'll post it when I get back from work. Meanwhile you can just prompt any LLM-type chat online to give you a command that uses yt-dlp and aria2.
    Reply With QuoteReply With Quote
    Thanks

  9. #22
    Moderator anon's Avatar
    Join Date
    01.02.08
    Posts
    39,550
    Activity Longevity
    11/20 19/20
    Today Posts
    2/5 ssss39550
    Since there's so much appreciation for terminal stuff here, I'll cross-post this.

    Quote Originally Posted by anon View Post
    Quote Originally Posted by anon View Post
    If you add raw=1 to the query string, you get redirected straight to the video stream... there's also a local parameter which can be true or false (not 1 or 0, confusingly) to proxy the video through Invidious or not, and quality which can be one of dash, hd720 or medium.
    Can also be used from a terminal.

    Code:
    wget "https://invidious.snopyta.org/watch?v=q6o49pbJaDo&quality=medium&local=false&raw=1"
    Adding &listen=1 downloads the audio track instead. Neither preserves the original name...
    Works in PowerShell with Invoke-WebRequest, so you don't need to install anything irrespective of your platform, which makes it at least situationally useful. Changing the "local" parameter to true will let you download VEVO stuff and possibly avoid geoblocking (depending on where the Invidious instance is hosted).
    "I just remembered something that happened a long time ago."
    Reply With QuoteReply With Quote
    Thanks

  10. #23
    buttnudge's Avatar
    Join Date
    26.06.24
    Location
    Romania/Italy
    P2P Client
    rtorrent/rutorrent
    Posts
    2
    Activity Longevity
    0/20 0/20
    Today Posts
    3/5 ssssssss2
    As promised here is the bash script.
    Code:
    #! /usr/bin/env bash
    # depends on: aria2, yt-dlp
    
    a2() {
    	BASE_YTDL=(
    		"--geo-bypass"
    		"--no-cache-dir"
    		"--no-call-home"
    		"--restrict-filenames"
    	)
    	BASE_AR2C="\
                    --no-netrc=true \
                    --log-level=error \
                    --summary-interval=0 \
                    --auto-save-interval=0 \
                    --file-allocation=falloc \
                    --console-log-level=error \
                    --split=16 \
                    --min-split-size=1M \
                    --http-no-cache=true \
                    --max-connection-per-server=16 \
                    --max-overall-download-limit=6M \
                    "
    	TYPE="$1"
    	shift
    	case $TYPE in
    	aud)
    		mkdir -p "${HOME}/Music"
    		(cd "${HOME}/Music" && exec yt-dlp "${BASE_YTDL[@]}" \
    			--external-downloader aria2c \
    			--external-downloader-args aria2c:"$(echo -e "$BASE_AR2C")" \
    			-o '%(title)s.%(ext)s' \
    			-f 'bestaudio/best' \
    			--no-playlist \
    			"$@")
    		;;
    	alb)
    		mkdir -p "${HOME}/Music"
    		(cd "${HOME}/Music" && exec yt-dlp "${BASE_YTDL[@]}" \
    			--external-downloader aria2c \
    			--external-downloader-args aria2c:"$(echo -e "$BASE_AR2C")" \
    			-o '%(playlist_title)s/%(autonumber)s-%(title)s.%(ext)s' \
    			-f 'bestaudio/best' \
    			--yes-playlist \
    			"$@")
    		;;
    	vid)
    		local QUA='bestvideo[height<=1440]+bestaudio/best[height<=1440]/best'
    		mkdir -p "${HOME}/Movies"
    		(
    			cd "${HOME}/Movies" && exec yt-dlp "${BASE_YTDL[@]}" \
    				--external-downloader aria2c \
    				--external-downloader-args aria2c:"$(echo -e "$BASE_AR2C")" \
    				--sub-langs "en.*" \
    				--write-subs \
    				--no-playlist \
    				-o "%(upload_date)s_%(title)s-[%(id)s].%(ext)s" \
    				-f "$QUA" \
    				"$@"
    		)
    		;;
    	*)
    		echo "Options: aud, alb, vid"
    		return
    		;;
    	esac
    }
    opt="$1"
    shift
    for link in "$@"; do
    	a2 "$opt" "$link"
    done
    I have it in PATH and use it most of the time to download albums off youtube that are playable as playlists on normal youtube. For videos be sure to change "1440" and yt-dlp options to what you actually want on your machine.
    Ideally this should be converted to python since it doesn't really need bash and this way it would also work on Windows but my python experience is just some scripts I needed to do for work and never got around to it.
    Reply With QuoteReply With Quote
    Thanks

+ Reply to Thread
Page 2 of 2 FirstFirst 12

Tags for this Thread

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •