this post was submitted on 25 Mar 2025
391 points (98.5% liked)

Technology

68131 readers
3725 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] olympicyes@lemmy.world 4 points 5 days ago (1 children)

I have zero interest in learning all the intricacies of ffmpeg so I find ChatGPT to be very useful. I’ve also used it for yt-dlp for downloading videos and converting the audio to mp3. Very useful. I personally save them as bash scripts so I can just input the file name or url as a command line argument. On Mac you can also wrap your bash scripts in AppleScript if you want to make applets for these functions. ChatGPT works great for apple script as well but I’ve had to feed it source code (eg from Apple Digital Mastering applets) to ensure it writes the new code correctly. You still must know what you’re doing.

[–] prole@lemmy.blahaj.zone 2 points 5 days ago* (last edited 5 days ago) (1 children)

Is yt-dlp really that difficult that you can't take ten min to learn the syntax? Do you not worry that you might end up relying on this stuff too much?

For example, I know I'm completely reliant on GPS, and I would be useless without it

[–] olympicyes@lemmy.world 1 points 5 days ago

The syntax is easy, but the options change a bit depending on what you want to do. My entire job I requires me to use my brain so I don’t mind cheating when it doesn’t really matter as in this case. In my case I wanted a SQLite database to store URLs and playlist IDs for recording attempts and to make sure I don’t download the same video multiple times. I think I also had songs run thru music brainz for audio fingerprinting and mp3 tags. ChatGPT doesn’t get it right the first time but often gives a reasonable boilerplate piece of code as a template to start from.