惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
L
LINUX DO - 最新话题
PCI Perspectives
PCI Perspectives
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
Webroot Blog
Webroot Blog
V2EX - 技术
V2EX - 技术
S
Security @ Cisco Blogs
T
The Exploit Database - CXSecurity.com
S
Schneier on Security
Latest news
Latest news
C
CXSECURITY Database RSS Feed - CXSecurity.com
C
CERT Recently Published Vulnerability Notes
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
T
Tor Project blog
Know Your Adversary
Know Your Adversary
S
Secure Thoughts
Project Zero
Project Zero
Hacker News: Ask HN
Hacker News: Ask HN
C
Cisco Blogs
K
Kaspersky official blog
Google DeepMind News
Google DeepMind News
N
News | PayPal Newsroom
V
Vulnerabilities – Threatpost
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
H
Heimdal Security Blog
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
C
Cyber Attacks, Cyber Crime and Cyber Security
L
Lohrmann on Cybersecurity
N
News and Events Feed by Topic
The Last Watchdog
The Last Watchdog
D
DataBreaches.Net
W
WeLiveSecurity
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
Y
Y Combinator Blog
TaoSecurity Blog
TaoSecurity Blog
AWS News Blog
AWS News Blog
T
Threat Research - Cisco Blogs
大猫的无限游戏
大猫的无限游戏
I
InfoQ
Cloudbric
Cloudbric
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Forbes - Security
Forbes - Security
Attack and Defense Labs
Attack and Defense Labs
The Cloudflare Blog
Recent Announcements
Recent Announcements
Scott Helme
Scott Helme
Cyberwarzone
Cyberwarzone

博客园 - 布里

chrome浏览器扩展“猫抓” Premiere调整画布尺寸 foobar2000歌词插件使用方法 blob视频地址如何下载 ffmpeg合并视频+音频 You-Get和youtube-dl 【会声会影】初装会声会影时,必要的设置 【会声会影】视频导出、输出时,如何设置参数 【会声会影】导入的srt字幕文件,如何快速批量调整字体及大小 把h264文件快速包装成mp4格式 Notepad++正则表达式——去掉srt字幕文件的时间轴 百度地图API的网页使用 ASPCMS_判断语句if标签的使用 ASS字幕制作 批处理修改Hosts文件 Outlook2013修改数据文件默认存放目录 获取【酷我音乐】歌曲URL地址 Win7远程桌面的多用户连接破解 Print Spooler 服务自动停止
ffmpeg视频分割
布里 · 2020-11-23 · via 博客园 - 布里

【推荐】

采用重新编码的方式分割视频。优点:体积小、无空白段落、可跳播。缺点:分割速度慢。

ffmpeg -ss 00:33:45 -t 00:00:42 -i D:\Movie\Ep06.mp4 -c:v libx264 -c:a aac -strict experimental -b:a 64k D:\Movie\output.mp4

参数说明:

-ss:截取起始时间;

-t:截取时长;

-i:视频文件路径;

-c:v:指定视频编码器;

-c:a:指定音频编码器;

-strict experimental:AAC编码器相关;

-b:a:设定音频比特率。

【不推荐】

非重新编码。优点:分割速度快。缺点:体积大、有空白段落、不可跳播。

ffmpeg -ss 00:33:45 -t 00:00:42 -i D:\Movie\Ep06.mp4 -vcodec copy -acodec copy D:\Movie\output.mp4

参数说明:

-vcodec copy:选用与源视频相同的视频编码;

-acodec copy:选用与源音频相同的音频编码。