Skip to content

Instantly share code, notes, and snippets.

@IpsumLorem16
IpsumLorem16 / index.html
Created April 18, 2021 12:55
SVG circle spinner (css keyframes only)
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle
class="ring-track"
fill="transparent"
stroke-width="6px"
stroke="#9c9c9c30"
cx="50" cy="50"
r="44"
/>
<circle
@tzmartin
tzmartin / m3u8-to-mp4.md
Last active June 19, 2024 03:06
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