请问怎么给.mp4视频文件添加封面?

请问怎么给.mp4视频文件添加封面?,第1张

①下载一个视频添加图片的软件。

② 接着进入到编辑界面,点击“导入”从电脑中选择一个需要的视频文件,选好后“打开”。

③视频添加进来后,用鼠标右键单击视频,然后选择“添加剪辑”,这样视频就会添加到时间线中的影片轨里了。

④ 视频添加好了,就可以再次点击“导入”从电脑中选择一张图片,要作为封面的图片,然后点击“打开”就好了。

⑤接着同样的也用鼠标右键单击图片,同样选择“添加剪辑”然后图片就会添加到影片轨的视频前面了,这样图片就会在视频播放前显示了。

可以下载

歌曲本身就带封面的资源

不好找

也可以自己添加

利用

千千静听

就可以

里面又一项就是添加歌曲专辑封面

不过要求你自己添加

小麻烦

因为要找合适的图片

ffmpeg 给音频添加封面,ffmpeg对音视频metadata 相关 *** 作

ffmpeg给音频添加封面的功能找了很久。在官网的文档中找到了方法。

但是因为各种原因,失败了很多次。

这次终于完全理解了这个命令的使用。

首先我们看到这个选项 **-disposition[:stream_specifier]** value **(***output,per-stream***)**

这个disposition选项是用来调整文件布局用的,有以下这些选项:

我们可以看到,其中有一个attached_pic选项,这个就是我们加封面的时候要用的。

先看看官网给的其他例子

For example, to make the second audio stream the default stream:

To make the second subtitle stream the default stream and remove the default disposition from the first subtitle stream:

然后就是添加封面的命令了

To add an embedded cover/thumbnail:

Not all muxers support embedded thumbnails, and those who do, only support a few formats, like JPEG or PNG.

可以看到,只支持很少的图片格式,比如jpeg和png,webp就不知道了,以后有机会试一试。

这个方法可以给视频和音频加封面。

上面给的例子是给视频加封面。

如果我把后面视频的格式变成m4a,结果发现效果只是单纯拷贝一个视频而已。

然后使用的过程中各种红色的找不到codec错误。

首先我对map命令不是很熟悉。这个场景就是map命令的一个应用。视频和图片作为输入,只取视频中的音频。所以我们就要定位到音频的位置。如果不用map,按照默认配置来的话,音频和视频和图片都会加入到新的文件里,可以看到video stream有两个,分别是视频和图片。

用map就是手动选择stream。

ffmpeg -i in.mp4 -i IMAGE -map 0 -map 1 -c copy -c:v:1 png -disposition:v:1 attached_pic out.mp4

上面这个例子, map 0是第一个整个视频,map1则是第二个图片,和不用map的结果差不多。

估计,用map是为了后面的disposition选择对应的图片流更稳定。

在我的需求里,就不一样了。我的需求是把一个视频和封面合成成具有封面的音乐,这样等于删除了视频流。节省空间,封面只是起到美化作用而已。

所以我的map是下面这样的

ffmpeg -i input.flv -i input.png -map 0:a -map 1:v

map后面的第一个数字代表 ffmpeg -i 输入的顺序,也就是程序实际读入stream的顺序。后面还可以定位,第一个是定位了stream文件,冒号后面的第二个则是定位具体的steam。可以用1,2之类的数字,用a,v则分别表示视频和音频,在只有一个视频和音频的情况下就等于选中一个特定的stream

再往后看, -c:v:1 png 选项,指定第二个视频的处理方式是png。 -c:v 就是用来指定视频编码器,后面再跟的数字,就是指定具体stream。这里1指的是第二条stream流。第一条指的是第一个视频的视频流了。如果要指定第一个视频的视频流则是 -c:v:0 。这里我们通常不指定也可以,反正ffmpeg也会有一些自动化处理的。

-disposition 后面冒号跟的也是一个steam选择的功能。

​-disposition:v:1 attached_pic

然后我的实际转化命令就变成

这样就能达成目的了。

经过测试opus格式也是不支持,估计也就只有mp3和aac这两种格式能支持吧?

加过封面后,用播放器加载能够正确使用封面了,并且mp3tag这类的工具也可以看到。

关于metadata的修改,网上发现一份很不错的文档,这里就放在下面了。方便查看。

首先修改metadata关键看标签名对应到ffmpeg里面是什么键值,wiki上有这样一张表

The following table shows the metadata keys that FFmpeg honors when muxing a QuickTime file. The low-level identifier column lists the atom name that the format uses to encode the data on disc, which is not interesting to most readers. For the interested but uninitiated, the notation, e.g., '\251nam' indicates a 4-byte code consisting of the byte A9 in hexadecimal (or 251 in octal) followed by the ASCII characters 'n', 'a', and 'm'.

I have received so many requests from my previous article, “ID3 tags on Windows using ffmpeg”, asking how to add, create or write ID3 tags with ffmpeg that I wrote this article in response.

The option to write ‘tags’ to a file, known as metadata, is -metadata key=”value”. Here is a basic example:

You repeat the option once for each key/value pair you want to add to your file like this:

If you want to clear or delete a certain key/value pair, include the key but leave the value blank like this:

The examples shown above are the very basic. While they will work and will produce a file, there are more options that need to be included to achieve the desired results.

Adding, creating, deleting, or clearing ID3 tags in ffmpeg is very simple. The hard part is figuring out what items you want and what the ‘key’ names are. For example, in Windows you can right-click on the audio file, select ‘Properties’, then click on the ‘Details’ tab. There are several Property/Value pair items listed“Title”, “Subtitle”, “Comments”, “Contributing artists”, “Album artist”, “Album”, etcetera. Similar information is available in iTunes by right-clicking on a name, choose ‘Get Info’, then click on the ‘Info’ tab. The following table may help you decide:

I suggest you experiment with the different keys to find what works best for you.

Lets look at some more advanced options you can use to manipulate metadata. For example, if you want to clear or delete all the global metadata in a file. You could use the examples above and include the key and a blank value for each item but that could make your command line very long. Instead you can use -map_metadata -1 instead. Here it is in a command line:

Setting -map_metadata to -1 (negative one) tells ffmpeg to use a non-existent input thereby clearing or deleting all the global metadata.

You can get the metadatainformation for a media file by including a input file with no output file like this:

FFmpeg is also able to dump metadata from media files into a simple UTF-8 encoded INI-like text file and then load it back using the metadata muxer/demuxer. Use a command line like the following to create the text file:

The file format is as follows:

A ffmetadata file might look like this:

You can edit the ffmetadata text file to include, change, or remove metadata by loading it into your media file.

To load the file and include the metadata in the output file, use -map_metadata like this:

The inputs -i in ffmpeg are counted zero-based. What that means is the first input from the command line example above -i in.mp3 is input number zero. The next input -i metadata.txt is input number one. So using -map_metadata 1 we are telling ffmpeg to map the metadata from input one, our text file, to the global metadata of the output file.

If you are planning on using the media files with metadata on Windows, DO NOT forget to use these options in your command line:

As shown in Example 7 above.


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/bake/11389997.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存