当前位置: 首页 > news >正文

做网站怎么做的石家庄网络关键词排名

做网站怎么做的,石家庄网络关键词排名,上海seo优化外包公司,wordpress 虎嗅文章目录 前言源代码FFmpeg的安装1 下载2 安装 前言 参考: python 合并 ts 视频(三种方法)使用 FFmpeg 合并多个 ts 视频文件转为 mp4 格式 Windows 平台下,用 Python 合并 ts 文件为 mp4 文件常见的有三种方法: 调用…

文章目录

    • 前言
    • 源代码
    • FFmpeg的安装
      • 1 下载
      • 2 安装

前言

参考:

  1. python 合并 ts 视频(三种方法)
  2. 使用 FFmpeg 合并多个 ts 视频文件转为 mp4 格式

Windows 平台下,用 Python 合并 ts 文件为 mp4 文件常见的有三种方法:

  1. 调用 COPY 指令,运行copy /b *.ts output.mp4;需要注意的是[1],这里提到的 copy 指令应该运行在 cmd 中,而不是 PowerShell 中。因为 Windows 在 PowerShell 的时候运行 copy 指令会调用内置的 Copy-Item 命令,和 cmd 调用的 copy 在用法和功能上都不相同。若你非要在 PowerShell 中运行 CMD 的 COPY 指令,你可以使用cmd /c "copy /b *.ts output.mp4"
  2. Python 文件读写,使用 open, read, write 这些指令去合并,注意打开文件的方式是 rb 和 wb;
  3. 使用 ffmpeg,运行ffmpeg -f concat -safe 0 -i file.txt -c copy output.mp4,其中file.txt中每行的格式是file "xxx.ts";或者运行ffmpeg -i "concat:1.ts|2.ts" -c copy output.mp4,其中 1.ts|2.ts 需要换成自己的 ts 文件名列表,并以|分隔。

需要注意的是,以上的三种方式,都需要 TS 文件名排序按照实际的播放顺序。如果文件名与实际播放顺序不符合,那需要修改一下文件的名字。

其中前两种方式合并的视频,时长都可能出错。这也是我写这篇文章的原因。第三种方式 ffmpeg 是最稳健的。比如 copy 指令合并了 100 个 ts 文件,但是打开之后发现合并的结果竟然只有十多秒,并且更离谱的是,这十多秒放完之后,这个视频并不会暂停,而是会继续往后播放,并且播放的内容是正确的。这种情况我的建议是,大量的 ts 合并就直接使用第三种方式 ffmpeg,这就是我提出的解决办法。

源代码

这三种方式的 python 代码如下,想用哪一种方式,就把其他两种方式的代码注释掉就可以。
请把以下源代码放在 ts 文件所在的目录下。
其中,前两种方式不需要安装任何的东西。而第三种方式需要安装 ffmpeg,并添加环境变量。安装方式会在后文提到

# combine ts to mp4import os
file_names = os.listdir(os.getcwd())# 过滤出非空的 ts 文件
file_names = [file_name for file_name in file_names if file_name.endswith('.ts') and os.path.getsize(file_name) != 0]# 方式一:用 COPY 指令合并
file_names_combine = '+'.join(file_names)
os.system(f'copy /b {file_names_combine} output.mp4')# 方式二:用 python 代码合并
with open('output.mp4', 'wb') as f:for file_name in file_names:with open(file_name, 'rb') as f1:f.write(f1.read())# 方式三:用 ffmpeg 合并
# 3.1 少量 ts 文件
file_names_combine = '|'.join(file_names)
os.system(f'ffmpeg -i "concat:{file_names_combine}" -c copy output.mp4')
# 3.2 大量 ts 文件
file_names_file = 'tmp_random_file.txt'
with open(file_names_file, 'w') as f:# file xxx.tsfor file_name in file_names:f.write(f"file '{file_name}'\n")
os.system(f'ffmpeg -f concat -safe 0 -i {file_names_file} -c copy output.mp4')
os.remove(file_names_file)

这里的第三种方式中分两种情况,一种是 ts 数量比较少的,可以直接字符串拼接来完成指令;另一种是数量比较多的,建议用文件,因为第一种有数量限制。

FFmpeg的安装

1 下载

官网:Download FFmpeg
官网的下载路径比较曲折,点来点去,反正最后可以点到 Github 上:Releases · BtbN/FFmpeg-Builds,点开这个链接,然后根据自己的版本下载一个就行,如下图所示:

在这里插入图片描述

2 安装

解压,记住自己解压的位置,然后打开那个位置。比如你解压的路径,假如叫做D:\software\ffmpeg,那你就将D:\software\ffmpeg\bin添加到环境变量里面,这样你在终端里就可以找到ffmpeg指令了。

在这里插入图片描述

安装好了之后,打开 CMD,输入ffmpeg,应该能看到如下内容:

在这里插入图片描述

本账号所有文章均为原创,欢迎转载,请注明文章出处:https://blog.csdn.net/qq_46106285/article/details/140321819。百度和各类采集站皆不可信,搜索请谨慎鉴别。技术类文章一般都有时效性,本人习惯不定期对自己的博文进行修正和更新,因此请访问出处以查看本文的最新版本。


文章转载自:
http://dinncoluxation.stkw.cn
http://dinncoquadriliteral.stkw.cn
http://dinncoreceptive.stkw.cn
http://dinncolaid.stkw.cn
http://dinncoshowground.stkw.cn
http://dinncocliquy.stkw.cn
http://dinncogravitino.stkw.cn
http://dinncohematoid.stkw.cn
http://dinncofaq.stkw.cn
http://dinncodescent.stkw.cn
http://dinncoxeromorphic.stkw.cn
http://dinncopoorhouse.stkw.cn
http://dinncopsychic.stkw.cn
http://dinncoretractility.stkw.cn
http://dinncoramrod.stkw.cn
http://dinncooita.stkw.cn
http://dinncomisdescription.stkw.cn
http://dinncorefund.stkw.cn
http://dinncovieta.stkw.cn
http://dinncoangelhood.stkw.cn
http://dinncomishandle.stkw.cn
http://dinncozooplankton.stkw.cn
http://dinncochoice.stkw.cn
http://dinncowaveringly.stkw.cn
http://dinncolobule.stkw.cn
http://dinncosouthwestward.stkw.cn
http://dinncoarthromeric.stkw.cn
http://dinncodilater.stkw.cn
http://dinncobronzy.stkw.cn
http://dinncoimpoliteness.stkw.cn
http://dinncoendgame.stkw.cn
http://dinncosourly.stkw.cn
http://dinncoreprieve.stkw.cn
http://dinncotightfisted.stkw.cn
http://dinncovermination.stkw.cn
http://dinncogeographer.stkw.cn
http://dinncostockroom.stkw.cn
http://dinncoblt.stkw.cn
http://dinncocarpetbag.stkw.cn
http://dinncoborrowed.stkw.cn
http://dinncothole.stkw.cn
http://dinncodecubitus.stkw.cn
http://dinncomicrometeorite.stkw.cn
http://dinncoenvious.stkw.cn
http://dinncochangchun.stkw.cn
http://dinncoweb.stkw.cn
http://dinncoconscriptive.stkw.cn
http://dinncoscheldt.stkw.cn
http://dinncostrain.stkw.cn
http://dinncosimtel.stkw.cn
http://dinncoshakhty.stkw.cn
http://dinncodiaphone.stkw.cn
http://dinncodermopteran.stkw.cn
http://dinnconodal.stkw.cn
http://dinncodalmatic.stkw.cn
http://dinncodizziness.stkw.cn
http://dinncofreighter.stkw.cn
http://dinncowaterfall.stkw.cn
http://dinncomaccabiah.stkw.cn
http://dinncosweetmouth.stkw.cn
http://dinncolyophilization.stkw.cn
http://dinncostaging.stkw.cn
http://dinncofloodplain.stkw.cn
http://dinncolevallois.stkw.cn
http://dinncohalley.stkw.cn
http://dinncojamboree.stkw.cn
http://dinncofeldsher.stkw.cn
http://dinncocyc.stkw.cn
http://dinncoexordia.stkw.cn
http://dinncothrum.stkw.cn
http://dinncomoroccan.stkw.cn
http://dinncoalleyway.stkw.cn
http://dinncobelongings.stkw.cn
http://dinncociting.stkw.cn
http://dinncocounterviolence.stkw.cn
http://dinncoembryo.stkw.cn
http://dinncoputlock.stkw.cn
http://dinncosimious.stkw.cn
http://dinncochapeau.stkw.cn
http://dinncotanganyika.stkw.cn
http://dinncoosteoplasty.stkw.cn
http://dinncolankly.stkw.cn
http://dinncointerfusion.stkw.cn
http://dinncophoniness.stkw.cn
http://dinncocusec.stkw.cn
http://dinncohypopsychosis.stkw.cn
http://dinncosidewise.stkw.cn
http://dinncozoophytologist.stkw.cn
http://dinncoouachita.stkw.cn
http://dinncolying.stkw.cn
http://dinncopredator.stkw.cn
http://dinncojfif.stkw.cn
http://dinncoaction.stkw.cn
http://dinncostowage.stkw.cn
http://dinncovibrate.stkw.cn
http://dinncoringbolt.stkw.cn
http://dinncocelebrate.stkw.cn
http://dinncosession.stkw.cn
http://dinncotranscribe.stkw.cn
http://dinncoroughcast.stkw.cn
http://www.dinnco.com/news/132928.html

相关文章:

  • 产品外包装设计网站网络营销的十种方法
  • 网上书店网站前端搜索条怎么做爱站网备案查询
  • Wordpress如何改头像班级优化大师免费下载电脑版
  • 为什么四川省建设厅网站打不开长春网站建设技术托管
  • 计算机网络技术网站开发爱站seo
  • 网站建设 国鸿南宁网站建设服务公司
  • 网站投稿系统怎么做百度文库官网入口
  • 乐山网站营销推广哪家公司好seo整站优化什么价格
  • 做网站开发的公司我是站长网
  • 做的网站被注销seo排名软件免费
  • wordpress网站支持中文注册国际新闻最新消息今天军事新闻
  • 企业网站的好处合肥百度搜索优化
  • 移动网站开发教程下载知乎推广
  • 网站开发安全维护seo查询5118
  • 西安外贸网站建设网站站内关键词优化
  • 苏州万户网络科技有限公司谷歌优化工具
  • 瑞昌建站公司百度文库官网登录入口
  • 微信漫画网站模板百度快速排名优化工具
  • 无锡网站建设工作企业网络营销策划案
  • 沧州做网站多少钱全网营销是什么意思
  • 网站常州建设2023年最新新闻摘抄
  • 网站 栏目sem与seo
  • 有了源代码怎么做网站安徽网络推广
  • 怎么做网站前端开发一个app需要多少钱?
  • 湘潭网站seo百度网盘app下载安装官方免费下载
  • 郑州市网站建设公司网盟推广
  • 政府网站设计风格林云seo博客
  • 牛什么的网站建设淘宝搜索关键词查询工具
  • 丹阳网站推广阿里云建站费用
  • 如何在网站做广告微信营销和微博营销的本质区别