For me it’s: Testdisk (and Photorec) Caddy Netstat Dig Aria2

  • monovergent
    link
    fedilink
    arrow-up
    18
    arrow-down
    1
    ·
    2 months ago

    yt-dlp. Too many options to remember and look up every time, but all useful and missing from GUIs when you just want to dowload audio or ‘good enough’ quality video in batches without re-encoding.

    While nmtui is perfectly fine for the CLI-uninitiated, I sometimes wonder why the nm-connection-editor window doesn’t provide the same level of functionality.

    • everett
      link
      fedilink
      arrow-up
      8
      ·
      2 months ago

      Too many options to remember and look up every time

      This is a good use case for shell aliases. If you can identify a few of your use cases, you can give each bundle of options its own command.

          • amanneedsamaid@sopuli.xyz
            link
            fedilink
            English
            arrow-up
            2
            ·
            1 month ago

            This is what I use (with zsh):

            yt-audio() {
            	   yt-dlp --no-playlist -f 'ba' -x --audio-format mp3 $1
            }
            yt-audio-playlist() {
            	   yt-dlp -f 'ba' -x --audio-format mp3 $1
            }
            
            

            It takes the best quality available and downloads it to mp3.

    • dizzy
      link
      fedilink
      arrow-up
      7
      ·
      2 months ago

      There’s a firefox extension that generates the cli command for whatever video you’re on. Let’s you check boxes for the format, sponsorblock, etc and then copies it to your clipboard.

      Just search the addon store for yt-dlp and it should show up

    • rotopenguin@infosec.pub
      link
      fedilink
      English
      arrow-up
      4
      ·
      2 months ago

      You can have most of the settings pre-loaded in its config file. I mostly let it do my preset -f, or when that fails do a -F to see what encodings are available.

      • rotopenguin@infosec.pub
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 months ago

        Btw, here’s my config file.

        -o "%(title)s (%(uploader_id)s).%(ext)s"
         
        -P ~/Videos
        
        -P "temp:/tmp/yt-dlp/"
        
        -f 271+ba[language=en][ext=m4a]/308+ba[language=en][ext=m4a]/137+ba[language=en][ext=m4a]/299+ba[language=en][ext=m4a]/231+ba[language=en][ext=m4a]/http_mp3_128/271+140/308+140/137+140/299+140/231+140
        --download-archive ~/.config/yt-dlp/dl-archive
        --no-playlist
        --write-sub
        --no-mtime
        --compat-options no-live-chat
        
    • kellyaster@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 month ago

      I believe ytDownloader might be what you’re looking for. It’s a yt-dlp frontend, you can export to video/audio pretty easily. And it’s in active development. I’ve used it to export short clips to WAV a few times, nothing too fancy, but so far it works pretty well.

    • BehindTheBarrier@programming.dev
      link
      fedilink
      arrow-up
      3
      arrow-down
      1
      ·
      edit-2
      2 months ago

      (Windows only warning, unless someone wants to add Linux support)

      I didn’t really search around for GUIs way back, but ended up making a basic GUI because I wanted to learn programming.

      https://camo.githubusercontent.com/5ecb6cdfb3710e359894b65e42b79c7ab7dd8de55a14cdf34f0f0f37d48c7d04/68747470733a2f2f692e696d6775722e636f6d2f346a46776846652e706e67

      With just having options as checkboxes for YouTube-dl. It has served me well all these years. It was literally the thing I made while learning programming so the code is pretty janky when I look back at it though…

    • Petter1@lemm.ee
      link
      fedilink
      arrow-up
      1
      ·
      2 months ago

      I use jdownloader as gui alternative for yt-dlp. 😄 It was easy enough for my mother to understand, apparently.