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

Technology

68187 readers
3850 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
[–] [email protected] 7 points 1 week ago* (last edited 1 week ago) (1 children)

imagemagick handles almost all image files

images ) ls
001.jpg  002.jpg  003.jpg  004.jpg  005.jpg
images ) convert 001.jpg example.pdf

ffmpeg handles almost all video files

ex ) ls
rock.mp4
ex ) ffmpeg -i rock.mp4 rock.avi

if you use gnome there's a nice little feature of the file explorer where you can just drag and drop scripts into ~/.local/share/nautilus/scripts/

for example

make a fish script (ignoring error checking for brevity here, my real script had a couple guard rails)

/#!/usr/bin/env fish
set file $argv[1]
convert $file (basename $file .png).pdf

then when you right click on a file in your gnome file explorer you can click the scripts option

example

and the script is right there so you can just easily convert with the press of a button

example

note, i crossed out some stuff that includes client names

tldr: there are so many ways to do what you need to do there's no reason to trust random websites you don't know. there's a lot of slimey people out there wanting to take advantage of people. and everybody should strive to be at least a little computer literate. the examples i gave here aren't complicated. they're simple commands

[–] [email protected] 3 points 1 week ago* (last edited 1 week ago)

That's a pretty sweet feature in GNOME! I'll need to see if there is something similar for KDE.