Dark_Dragon@lemmy.dbzer0.comtoPiracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Best use of android tabletEnglish
1·
9 months agoYou really are our lord and saviour
You really are our lord and saviour
How to go to English board? I am only seeing Russian. I’m using Google translate page to read the page. Help
I don’t like brave browser from first use. Something seemed off.
Thank you
Can anyone tell me how to do it?
If we have to be comfortable not owning games, then they have to be comfortable us pirating them.
Yep replying from eternity.
Edit: You have so much customisation. You have to tweak colors a bit for your liking.
For batch converting ISOs to a specific resolution and format while preserving folder hierarchy on Linux, you can indeed use
ffmpeg
with a bash script. However, you might also consider usingHandBrakeCLI
, which is a command-line interface for HandBrake, a popular video transcoder.Here’s how you could use
HandBrakeCLI
to achieve your goal:HandBrakeCLI
if you haven’t already:#!/bin/bash # Set input and output directories input_dir="/path/to/your/input/directory" output_dir="/path/to/your/output/directory" # Convert ISOs to 720p h.265 find "$input_dir" -name "*.iso" -type f | while read -r file; do output_file="${file%.iso}.mp4" handbrakecli --input "$file" --output "$output_dir/$output_file" --preset="Super HQ 720p30 Surround" done
Adjust the preset according to your needs. You can check available presets with
HandBrakeCLI --preset-list
.chmod +x convert_iso.sh
This script will convert all ISO files in the specified input directory to 720p h.265 MP4 files using HandBrakeCLI while preserving the folder hierarchy.