• 1 Post
  • 20 Comments
Joined 1Y ago
cake
Cake day: Jun 18, 2023

help-circle
rss

What about the current chip “paid” and “bought” by the customers?


So the car manufacturer took the “pennies” in the ass or mouth?




How much of a corporate shill are you? Do you own the company or something? Be open minded and try other things. Don’t be a corporate drone. Don’t defend the corporate doing as right , defend your interests first.




Ok got it.

  • bottles
  • proton
  • lutris
  • wine

I’ll try one game with most different crack with each and see which works the best. Thanks for the suggestions.





I’ve decided to switch to Linux Mint, but i have a lot of pirated games. How to play them with all the cracks and stuff in linux?
I have decided to switch to Linux Mint from windows. I don't use computer for work that much. And for my personal use I'm switching to Linux Mint. I have heard a lot about it. So giving it a try. I know about emulating windows in linux to play window games. But how do you use cracks and stuff?? Does emulating also access my 100% graphics card or less? I want to know about all these. Please people in my condition help. Thanks in advance :)
fedilink

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 using HandBrakeCLI, which is a command-line interface for HandBrake, a popular video transcoder.

Here’s how you could use HandBrakeCLI to achieve your goal:

  1. Install HandBrakeCLI if you haven’t already:
sudo apt-get install handbrake-cli
  1. Write a bash script to iterate through your directories, converting ISO files:
#!/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.

  1. Make the script executable:
chmod +x convert_iso.sh
  1. Run the script:
./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.






If we have to be comfortable not owning games, then they have to be comfortable us pirating them.