mediainfo

Batch files inside folder to create MediaInfo.nfo file

故事扮演 提交于 2021-02-19 22:33:59
问题 I'm trying to create a Batch whose purpose is to use MediaInfo.exe (CLI) to create a single text file (.nfo) containing all the "mediainfo" of the video files contained in a folder. The Batch is executed from the context menu: right click on the folder containing the video files. To do so, the file will be placed in "shell:sendto". The generated .nfo file containing all the mediainfo has to be "placed/saved or move" in the folder containing the video files. A specificity is that i need to

Batch files inside folder to create MediaInfo.nfo file

我们两清 提交于 2021-02-19 22:31:07
问题 I'm trying to create a Batch whose purpose is to use MediaInfo.exe (CLI) to create a single text file (.nfo) containing all the "mediainfo" of the video files contained in a folder. The Batch is executed from the context menu: right click on the folder containing the video files. To do so, the file will be placed in "shell:sendto". The generated .nfo file containing all the mediainfo has to be "placed/saved or move" in the folder containing the video files. A specificity is that i need to

Batch files inside folder to create MediaInfo.nfo file

强颜欢笑 提交于 2021-02-19 22:28:09
问题 I'm trying to create a Batch whose purpose is to use MediaInfo.exe (CLI) to create a single text file (.nfo) containing all the "mediainfo" of the video files contained in a folder. The Batch is executed from the context menu: right click on the folder containing the video files. To do so, the file will be placed in "shell:sendto". The generated .nfo file containing all the mediainfo has to be "placed/saved or move" in the folder containing the video files. A specificity is that i need to

Batch files inside folder to create MediaInfo.nfo file

岁酱吖の 提交于 2021-02-19 22:25:52
问题 I'm trying to create a Batch whose purpose is to use MediaInfo.exe (CLI) to create a single text file (.nfo) containing all the "mediainfo" of the video files contained in a folder. The Batch is executed from the context menu: right click on the folder containing the video files. To do so, the file will be placed in "shell:sendto". The generated .nfo file containing all the mediainfo has to be "placed/saved or move" in the folder containing the video files. A specificity is that i need to

如何在 Linux 中编辑字幕

拥有回忆 提交于 2021-02-17 04:10:34
https://linux.cn/article-11946-1.html 我作为一位世界电影和地区电影爱好者已经几十年了。这期间字幕是一个必不可少的工具,它可以使我享受来自不同国家不同语言的优秀电影。 如果你喜欢观看带有字幕的电影,你可能会注意到有时字幕并不同步或者说并不正确。 你知道你可以自己编写字幕并使得它们更完美吗?让我们向你展示一些 Linux 中的基本字幕编辑吧。 从闭路字幕数据中提取字幕 大概在 2012、2013 年我开始了解到有一款叫做 CCEextractor 的工具。随着时间的推移,它已经成为我必不可少的工具之一,尤其是当我偶然发现一份内含有字幕的媒体文件。 CCExtractor 负责解析视频文件以及从闭路字幕closed captions数据中产生独立的字幕文件。 CCExtractor 是一个跨平台的、自由开源工具。自它形成的那年起该工具已经成熟了不少而如今已成为 GSOC 和谷歌编码输入的一部分。 简单来说,这个工具基本上是一系列脚本,这些脚本以一种顺序方式一个接着一个地给你提供提取到的字幕。 你可以按照 本页 的 CCExtractor 安装指南进行操作。 若安装后你想从媒体文件中提取字幕,请按以下步骤操作: ccextractor <path_to_video_file> 该命令将会输出以下内容: $ ccextractor $something

How can I (or is it possible to) convert the AVC codec profile and level to the MIME codec definition?

喜你入骨 提交于 2021-02-08 07:23:35
问题 In my use-case I have to provide codec specification within the HTML5 video source 's MIME type. But even a type="video/mp4; codecs=avc1" is not detailed enough for Firefox. Firefox needs the extra detail of for example type="video/mp4; codecs=avc1.64001E" . My problem is that I don't know where to get this 64001E part from. The whole identification happens on server side. So far I was using ffprobe and that's perfectly supplies me JSON format output, like so: ffprobe -select_streams v:0 -v

WebRTC 系列之视频辅流

末鹿安然 提交于 2021-01-30 03:58:35
作者:网易云信资深客户端开发工程师 陶金亮 近几年,实时音视频领域越来越热,业界很多音视频引擎都是基于 WebRTC 进行实现的。本文主要介绍 WebRTC 在视频辅流上的需求背景以及相关技术实现。 WebRTC 中的 SDP 支持两种方案: PlanB 方案 和 Unified Plan 方案。早期我们使用多PeerConnection的 Plan B 方案中只支持一条视频流发送,这条视频流,我们称之为”主流”。目前我们使用单 PeerConnection 的 Unified Plan 方案,新增一条视频辅流,何为视频”辅流”?视频辅流是指第二条视频流,一般用于屏幕共享。 需求背景 随着业务的发展,一路视频流满足不了更多实际业务场景的需求,例如在多人视频聊天、网易会议以及其他在线教育场景下,需要同时发送两路视频流:一路是摄像头流,另一路是屏幕共享流。 但是,目前使用 SDK 分享屏幕时,采用的是从摄像头采集通道进行屏幕分享。在该方案下,分享者只有一路上行视频流,该场景中要么上行摄像头画面,要么上行屏幕画面,两者是互斥的。 除非实例一个新的 SDK 专门采集并发送屏幕画面,但实例两个 SDK 的方案在业务层处理起来十分麻烦且会存在许多问题,例如如何处理两个流间的关系等。 在 WebRTC 场景中,还存在一种可以单独为屏幕分享开启一路上行视频流的方案,并称之为“辅流

unity踩过的音频坑

自古美人都是妖i 提交于 2020-08-20 05:29:30
支持格式 官方说支持aif, wav, ogg, mp3,少就少吧,这些格式还并非全平台通用,放个mp3,windows,mac平台会告诉你说不支持 在build settings中修改成android后没问题了,ios没试过。 麻烦的读取 对于音频的读取需要手动指定,完全是坑爹的操作,react native, flutter哪个不是直接拿来用就成了?你得指定用哪种格式来读取。 上面这个错误是因为我读取参数忘记改了,一读ogg就出错。 using (var uwr = UnityWebRequestMultimedia.GetAudioClip(path, AudioType.MPEG)) { ... 应该写成AudioType.OGGVORBIS,搞笑的AudioType里面有ACC,然后看注释: // // 摘要: // Type of the imported(native) data. public enum AudioType { // // 摘要: // 3rd party / unknown plugin format. UNKNOWN = 0, // // 摘要: // Acc - not supported. ACC = 1, ACC不支持,让我有种 某天回家老婆开心的对我说:老公,咱中500万大奖了,然后再加句:逗你玩 的感觉。 本地、远程表现不一致

《自拍教程69》Python 批量重命名音频文件,AV专家必备!

橙三吉。 提交于 2020-08-09 05:55:07
本篇主要学习如何Python自定义模块并调用该模块,并重点介绍Python正则表达式的强大的文本处理能力。 案例故事: 任何一款终端产品只要涉及音频输出,就肯定涉及音频的解码, 作为一名专业的AV (Audio & Video)测试人员,我们需要一堆的 规范化标准的的音频测试文件 , 但是发现音频资源名字命名的很随意比如:青藏高原.wma, 以上命名不能看出音频文件的具体编码规格, 测试经理要求我进行批量重命名工作,模板如下, 音频编码格式_音频采样率_声道数_比特率_容器.容器, 例如: wma_44.1KHz_stereo_192Kbps_wma.wma 音频编解码基本知识 将声音存储为音频文件的时候,需要经过以下几个步骤: 需要录制(采样)成音频原始数据; 通过一定的编码压缩技术将音频原始数据尽可能地压缩成最小; 通过音频容器以独立文件的形式存储音频; 主要涉及以下技术参数: 音频参数 参数释义 举例 音频编码格式 (压缩技术) 即将音频数据压缩的一类技术, 不同的编码格式, 其压缩率与压缩效果不一样。 主要分成2类: 有损压缩(会导致失真,压缩率高) 无损压缩(尽量保真,压缩率低) 有损压缩: Mpeg1 Level3(即我们常说的Mp3); WMA;LCACC; LTPAAC; HE-AAC, HE-AACV2; AMR-WB, AMN-NB; Vorbis;MiDi;

音视频总结篇

天大地大妈咪最大 提交于 2020-04-28 20:38:56
音频,PM3, wma,wav VGA ->r,g,b yuv,rgb,亮度色差 CD音频格式,采样率44.1,编码位数16,位,立体声双声道;采样时间为60s, 则其数据量为: ([44.1×1000×16×2×(5×60)] /(8×1024×1024) =50.47MB)。 mpeg->i,b,p,b帧, 熵,最小比特数, P帧图像-》参考前项I,P帧运动补偿。, 帧间预测编码B帧,-》用活动图像序列相邻帧之间的相关性,它可以获得比帧内预测编码的多压缩比。 帧内预测编码I帧; sps,pps, MPEG 视频基本码流结构: header, AMR ->文件头标识6个字节,-》音频帧; 数字音频编码:wav, .ape,mp3,wma,m4a,acc ffmpeg->解封装,视频数据:flv,mkv,mp4,mov 压缩音频数据 aac,mp3 压缩视频数据 h264,mpeg2 音频解码 pcm 视频软解码avframe-> yuv, 硬解码 avpacket 像素转换-》yuv->rgb 视频封装格式:MP4,flv,wmv,mov, vlc播放器; 播放器信息查看工具: MediaInfo, 视频封装格式:mp4,flv,wmv,mov, 封装格式作用->视频流+音频流 视频压缩数据格式-》h264,mpeg2, 音频压缩数据格式-》MP3,aac mpeg2-