美文网首页随笔
多个ts合并转格式mp4

多个ts合并转格式mp4

作者: 数量积日记 | 来源:发表于2022-03-10 15:10 被阅读0次

    用N_m3u8DL-CLI下载视频文件后,发现没有自动合并,而是多个ts文件。

    在文件夹下新建记事本,将下列代码复制进去,保存,更改格式为bat


    @echo off & setlocal enabledelayedexpansion

    for /f delims^= %%a in ('dir /a-d /s /b *.ts') do (

        set "filename=0000%%~na"

        ren "%%~fa" "!filename:~-5!.ts"

        )

    copy /b  %~dp0\*.ts  %~dp0\video.mp4


    点击管理员身份运行,则同文件夹的多个ts会合并成mp4格式的视频

    相关文章

      网友评论

        本文标题:多个ts合并转格式mp4

        本文链接:https://www.haomeiwen.com/subject/kfegkrtx.html