只要将做封面的图片托转到Windows Media Player中要加封面的MP3音乐上即可。
具体步骤如下:
1、s首先,找到想要添加、替换专辑的图片;
2、打开媒体库,直接使用鼠标左键点击图片不松手,然后拖曳到专辑的图标上,就有替换的菜单了,说明软件支持此法替换。
3、此时,再松手即可添加或替换专辑的图片。
拓展资料让Windows Media Player同步显示歌词:
1、打开Windows Media Player播放器;
2、右键单击空白处,点击“歌词与字幕”——“开”;
3、再次相同路径,选择“默认设置”选项;
4、打开的默认语言设置面板后,我们设置音频语言为标题默认语言,同时选择“歌词、字幕和副标题”为“中文(简体,中国)”选项。
5、新建一个文件夹,用于存放歌曲和稍后将导出的SMI文件;
6、打开LyricPower,打开歌曲对应的LRC文件,方法是:找到与歌曲同名的LRC文件,并选定它;
7、这样我们就导入了LRC文件,单击“文件”按钮,选择“导出SMI”选项,并将导出的SMI文件放在“我的歌曲”文件夹里,然后保存。
8、我们再将歌曲文件(MP3)也放在该文件里,这里我们需要仔细检查歌曲名与导出的SMI文件名是否完全相同,如果不同,我们需手动设置为相同的文件名。
9、然后我们用Windows Media Player9.0播放器播放这首歌曲,你会惊奇地发现屏幕下方显示了同步的歌词。
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.
你的意思是在音频里镶入专辑封面吗?1,下载 TTPlayer(千千静听)5.0.1版.2,下载安装后,启动 千千静听 ,在顶部的工具条处,点鼠标右键,依次进入 千千选项 -- 系统关联,在音频格式里面点选播放器在系统里面的关联文件,建议 Real音频文件 和 Windows media 音频文件都点选3,一切准备就绪后,找到想要添加 专辑封面 的音频文件,用 千千静听 打开4,在此时,先不要急着 添加专辑封面 !!给一个建议:在音频文件处 点鼠标右键 -- 先逐一编辑一下歌曲的 标签信息,这样,音频文件在手机的WALKMAN播放器里面就不会出现乱码了编辑完成后,退出 千千静听 这步很重要,与下一步有很大关系,因为不退出的话,信息不会记录到歌曲里面的5,这步也是建议,大家可以不 *** 作此步.(但是这一步绝对有益处)再全部选择刚才编辑过的歌曲 -- 点鼠标右键 -- 转换格式 -- 选择 确定 -- 立即转换(如下图)提示:转换的 目标文件夹 需要手动创建!!音频格式转换中...转换出来的文件后缀名为 *.m4a 说明:这一步的好处就是转换后,音频文件的大小是原来的 二分之一 ,但是音质却和原来的几乎一样6,选择转换格式后的歌曲 -- 点选 添加专辑封面 -- 然后 浏览 找到你想作为专辑封面的图片 -- 打开 -- 保存到文件7,保存后,该文件就会在WALKMAN2.0播放器里面显示专辑封面了!详情请浏览(有图): http://itbbs.pconline.com.cn/mobile/topic.jsp?tid=9017597欢迎分享,转载请注明来源:内存溢出
评论列表(0条)