Convert m3u8 to MP4 with FFMPEG
#!/usr/bin/env bash
# http://stackoverflow.com/a/32537953/1766716
# ffmpeg -i http://.../playlist.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4
url=$1
filenameext=$(basename "$url")
filename="${filenameext%.*}"
videofile=$filename.mp4
echo $filename
ffmpeg -i $url -c copy -bsf:a aac_adtstoasc $videofile