Skip to content

Instantly share code, notes, and snippets.

View devahmedshendy's full-sized avatar

Ahmed Shendy devahmedshendy

  • Egypt
View GitHub Profile
@devahmedshendy
devahmedshendy / .gitignore
Last active February 18, 2019 10:51
Common gitignore entries
# Reference: https://github.com/github/gitignore
target/
infrastrucure/development/database
!.mvn/wrapper/maven-wrapper.jar
# Project #
node_modules/
@devahmedshendy
devahmedshendy / download-m3u8-video-using-ffmpeg.txt
Last active June 30, 2021 22:39
Download M3U8 Video with FFmpeg
1. To start off, download and install FFmpeg if you haven't already.
2. Next, go to the streaming site from where you want to download and grab the M3U8 video URL
3. Open the command line tool, and type:
ffmpeg -i "http://example.com/video_url.m3u8" -c copy -bsf:a aac_adtstoasc "output.mp4"
reference: https://windowsloop.com/download-m3u8-video-with-ffmpeg