Video and audio conversion can be done with Handbrake or Shutter Encoder, both are nice GUIs
Comment on FBI warnings are true—fake file converters do push malware
Ulrich@feddit.org 1 year agoWhich offline converter? I find myself often trying to convert:
- PDF to JPEG
- AVC to MP4
- OPUS to MP3
etc. I have no idea how to do that but if I type it into a search engine there’s usually tools there.
MangoPenguin@lemmy.blahaj.zone 1 year ago
Ulrich@feddit.org 1 year ago
Handbrake won’t load the file and Shutter won’t even open. But thank you.
ploot@lemmy.blahaj.zone 1 year ago
Foobar2000 is good with audio file conversions, once you have installed the relevant codecs.
kipo@lemm.ee 1 year ago
You could try Permute. It’s a pretty simple app for converting video and audio. Permute is my go-to for quick video conversion.
DBPowerAmp has an easy-to-use audio converter that supports pretty much every audio format and does batch file conversion as well. DBPowerAmp is my go-to for audio conversion.
Both of these are paid apps.
Ulrich@feddit.org 1 year ago
Thanks, I’ll check those out.
kava@lemmy.world 1 year ago
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
and the script is right there so you can just easily convert with the press of a button
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
cyberwolfie@lemmy.ml 1 year ago
Thats a pretty sweet feature in gnome. Ill need to see if there is something similar for kde
zerofk@lemm.ee 1 year ago
I can’t comment on the others, but PDF to JPEG should be easy enough. ImageMagick, which another commenter suggested, is possible but not user friendly. However you can just open the PDF in many applications and export it as an image. Adobe Acrobat and Photoshop can do it. GIMP probably too.
I’m a last ditch effort you can even just open the file and screenshot it.
shottymcb@lemm.ee 1 year ago
Open/Libreoffice can do that too
T156@lemmy.world 1 year ago
FFmpeg and handbrake do the latter two quite handily. The latter even has a nice program interface, rather than needing commands.
ImageMagick is capable of the first. I’ve had it go the other way before, and I should be most surprised if it couldn’t convert a PDF to a jpg.
Ulrich@feddit.org 1 year ago
I don’t have the knowledge or the time to learn to use these tools.
ipkpjersi@lemmy.ml 1 year ago
It is indeed very difficult to type convert 001.jpg example.pdf and ffmpeg -i rock.mp4 rock.avi
Ulrich@feddit.org 1 year ago
convert 001.jpg example.pdf and ffmpeg -i rock.mp4 rock.avi
Ulrich@feddit.org 1 year ago
TYPE IT WHERE!? WHAT DO I DO WITH THIS INFORMATION!? How are you so completely unaware at how non-sensical this information is?
captain_aggravated@sh.itjust.works 1 year ago
Then I suppose you’re up shit creek.
Ulrich@feddit.org 1 year ago
Thanks for that deep analysis.
vithigar@lemmy.ca 1 year ago
Don’t most pdf viewers have an export to image option?
Do you actually have files with an .avc extension? AVC is a codec that can be used in many different container formats, including MP4. Where did these files come from?
I actually agree that most audio conversion tools are needlessly awkward. Audacity will convert these just fine, though doesn’t really do bulk conversion. Foobar2000 will do it in bulk if you’re on windows.
AppearanceBoring9229@sh.itjust.works 1 year ago
On the PDF to JPEG, you can also open the PDFs with an image editor, such as Inkscape or krita, and then save the image on the format and quality needed. This method also has the benefit that on some cases you play with the assets if needed. (Depends on how was the PDF generated)
Ulrich@feddit.org 1 year ago
Don’t know, I never looked! But I will, thanks.
Yes
I’ll give this a try on Tenacity. I didn’t realize they had file conversion on there.
Only helpful comment in this thread, thanks.