Skip to content

Instantly share code, notes, and snippets.

View DayVeeBoi's full-sized avatar

I_Heart_Cheezy_Poofs DayVeeBoi

View GitHub Profile
@DayVeeBoi
DayVeeBoi / m3u8-to-mp4.md
Created November 8, 2022 19:21 — forked from tzmartin/m3u8-to-mp4.md
m3u8 stream to mp4 using ffmpeg

1. Copy m3u8 link

Alt text

2. Run command

echo "Enter m3u8 link:";read link;echo "Enter output filename:";read filename;ffmpeg -i "$link" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 $filename.mp4
@DayVeeBoi
DayVeeBoi / reddit_snippit.md
Last active May 10, 2020 20:58
r/PS4Homebrew FAQ Snippits

PS4 Homebrew FAQ

How do I update safely?

-All you have to do is download the 5.05 recovery image (one place to do so is DarkSoftware.xyz) place it on a USB device in the following folder tree /PS4/UPDATE/UPDATE.PUP (make sure you change the file name to just "UPDATE.PUP" if you use the darksoftware link).

Put the USB storage into the left-most USB port and start your console in safe mode by turning it off, then once it is off, hold power for around 12-15 seconds until you hear a second beep, then choose option "(3) Update System Software). Make sure that your .pup file is in the correct folder, and is properly named or you may install the wrong update file (I'm not sure if it just errors out or not). URL

-You would have to disable update blocking through the payload launching menu (if you have blocked updates), then just download the firmware file and update. I would encourage you to d

@plembo
plembo / CalibreServerOnLinux.md
Last active May 6, 2026 20:07
Calibre Server on Linux

Calibre Server on Linux

Introduction

Calibre is a powerful cross-platform, open source, ebook manager and editing platform. Its calibre-server component can be used to publish an e-book library on a local network. While you can launch calibre-server as a desktop application, it can also be run as a daemon on a headless Linux server.

This tutorial on setting up calibre-server using Ubuntu 14.04 is very good, but dated.

@tzmartin
tzmartin / m3u8-to-mp4.md
Last active December 24, 2025 06:37
m3u8 stream to mp4 using ffmpeg

1. Copy m3u8 link

Alt text

2. Run command

echo "Enter m3u8 link:";read link;echo "Enter output filename:";read filename;ffmpeg -i "$link" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 $filename.mp4
@hubgit
hubgit / youtube-gif.sh
Last active September 12, 2023 23:28
Convert a section of a YouTube video to an animated GIF
#!/bin/bash
# brew install x265
# brew install ffmpeg
# brew install youtube-dl
# brew install imagemagick
ID='U65_uY5N2WM' # YouTube video ID, i.e. https://www.youtube.com/watch?v={ID}
# fetch the video file with youtube-dl