wyanassert / wyanassert.github.io

0 stars 0 forks source link

m3u8 视频下载 | 微言 | wyanassert <br>个人工作总结<br> #137

Open wyanassert opened 9 months ago

wyanassert commented 9 months ago

https://blog.wyan.vip/2023/10/m3u8_download.html

m3u8 视频在线提取工具 下载音频和视频合并 12345// 先把音频分离出来ffmpeg -i "audio.m4a" -acodec copy "tmp_audio.aac"// 然后把原始视频和上一步得到的aac组装到一起ffmpeg -i "video.mp4" -i "tmp_audio.aac" -c c