Skip to content

Instantly share code, notes, and snippets.

@hassaannoor
hassaannoor / m3u8-to-mp4.md
Created December 11, 2021 09:02 — 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
@hassaannoor
hassaannoor / bronto.ts
Last active November 23, 2021 11:50 — forked from kitsonk/bronto.ts
Example Deno Static Server
import {
green,
cyan,
bold,
yellow,
red
} from "https://deno.land/std@v0.100.0/fmt/colors.ts";
import {
Application,