Skip to content

Instantly share code, notes, and snippets.

View M4C4R's full-sized avatar
🌍

Mert Acar M4C4R

🌍
View GitHub Profile
@luizomf
luizomf / upscale_1080p_to_4k_using_ffmpeg.md
Last active May 14, 2025 18:46
Upscale 1080p to 4k using ffmpeg

Upscale 1080p to 4k using ffmpeg

Just use the command below:

ffmpeg -i INPUT_FILE \
  -vf scale=3840x2160:flags=lanczos \
  -c:v libx264 \
  -crf 13 \
 -c:a aac -b:a 512k \
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 18, 2025 02:45
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example