Skip to content

Instantly share code, notes, and snippets.

View locobastos's full-sized avatar
😃

Bastien MARTIN locobastos

😃
  • Grenoble, France
View GitHub Profile
@locobastos
locobastos / redump_ngc_rvz.md
Last active June 29, 2024 15:31
REDUMP GameCube size comparison

Redump Nintendo GameCube files in RVZ format.

Converted with 20240524 (linux-x64).

Nintendo - GameCube - Datfile (1992) (2024-06-02 00-38-06)

SIZE COMPARISON

COMPRESSION TYPE SIZE SIZE % SIZE SAVED TIME TO COMPRESS TIME TO VERIFY
@locobastos
locobastos / Arch-Linux-Installation.md
Last active September 15, 2020 15:28
Arch Linux Installation

Arch Linux Installation

Based on the link: Installation de base (French)

As written (translated from French),

It is strongly discouraged to use tutorials when installing Arch Linux. Tutorials are rarely updated, which conflicts with the constant evolution of any rolling release.
The use of an outdated or incorrect tutorial can lead to serious malfunctions.

These notes are mine and worked during August 2019 using the ISO: "archlinux-2019.08.01-x86_64.iso"

PERSONAL COMMAND LINE

FFMPEG :

Single source

ffmpeg.exe -i "input with spaces.mkv" -map 0:0 -map 0:1 \
    -c:a eac3 -ab 128k -ac 2 \
    -c:v libx264 -preset:v veryfast -tune:v animation -profile:v high -level:v 4.1 -b:v 3000k -strict -2 \
    -x264-params ref=4:subme=8:me_range=16:trellis=1:threads=18:lookahead_threads=3:bframes=3:keyint=240:keyint_min=24:rc_lookahead=50:ratetol=1.0:cplxblur=20.0:qblur=0.5 \

-vf "subtitles='input with spaces.mkv':si=0:force_style='Outline=1,Shadow=0'" output.mp4