我通常使用EasyTAG 2.1.7标记Ogg Vorbis文件。
现在,我想生成Ogg Opus文件,但无法将标签写入文件中。EasyTAG涉及Ogg文件没有Vorbis或Speex流的问题。
另一个工具(例如lltag)会吐出诸如“用未知类型跳过此文件”之类的消息。
一些忠告?谢谢。
我通常使用EasyTAG 2.1.7标记Ogg Vorbis文件。
现在,我想生成Ogg Opus文件,但无法将标签写入文件中。EasyTAG涉及Ogg文件没有Vorbis或Speex流的问题。
另一个工具(例如lltag)会吐出诸如“用未知类型跳过此文件”之类的消息。
一些忠告?谢谢。
Answers:
自从首先提出并回答这个问题以来,时代已经改变了!现在,在2017年10月,Ogg Opus文件已成为主流,Ubuntu下有多个不错的选择可以标记Ogg Opus文件。
我将在下面详细介绍我个人推荐的3种方法:
1. EasyTag
现代版本的EasyTag可以标记Ogg Opus文件。
编辑:正如已经指出的那样,这不是一个好主意,因为Ogg Vorbis文件的标记有一个未解决的问题。以我的经验,适用于Ogg Vorbis的EasyTag的安全版本为2.4.2,该版本对我个人没有任何问题。
首先安装EasyTag:
sudo apt-get install easytag
然后使用EasyTag打开Ogg Opus文件进行标签编辑!我自己的系统的屏幕截图如下所示:
其他好的选择可能是PuddleTag或Kid3 ...
2.使用Opusenc编码时创建标签:
如果您更喜欢命令行,则可以在使用编码文件时创建标记opusenc
。通过运行以下命令安装此实用程序:
sudo apt-get install opus-tools
我用来创建测试文件的命令行如下:
opusenc --bitrate 128 \
--artist "Jody Marie Gnant" \
--title "Lucky Night" \
--date "1995" \
--album "Treasure Quest Soundtrack" \
--genre "Soundtrack" \
luckynight.wav luckynight.opus
可以将更多标签添加到上述语法中,并且可以通过opusenc -h
从命令行运行来查看所有标签。
3.将音频CD复制到Ogg Opus +标记
同样,如果您热衷于命令行,并且正在Ubuntu的较新版本下从音频CD创建Ogg Opus音频文件,则可以使用单个命令abcde
进行翻录,转换和标记。如下安装abcde:
sudo apt-get install abcde opus-tools
然后将以下配置文件放入~/.abcde.conf
:
# -----------------$HOME/.abcde.conf----------------- #
#
# A sample configuration file to convert music cds to
# Opus using abcde version 2.7.2
#
# http://andrews-corner.org/linux/abcde/index.html
# -------------------------------------------------- #
# Encode tracks immediately after reading. Saves disk space, gives
# better reading of 'scratchy' disks and better troubleshooting of
# encoding process but slows the operation of abcde quite a bit:
LOWDISK=y
# Specify the method to use to retrieve the track information,
# I give the default below but consider setting 'musicbrainz'
# instead, which is my own preferred option:
CDDBMETHOD=cddb
# Make a local cache of cddb entries and then volunteer to use
# these entries when and if they match the cd:
CDDBCOPYLOCAL="y"
CDDBLOCALDIR="$HOME/.cddb"
CDDBLOCALRECURSIVE="y"
CDDBUSELOCAL="y"
# Specify the encoder to use for Opus. In this case
# the only choice is opusenc.
OPUSENCODER=opusenc
# Specify the path to the selected encoder. In most cases the encoder
# should be in your $PATH as I illustrate below, otherwise you will
# need to specify the full path. For example: /usr/bin/opusenc
OPUSENC=opusenc
# Specify your required encoding options here. Multiple options can
# be selected as '--preset standard --another-option' etc.
# In vbr mode the bitrate setting allows for a range of bitrates, use
# --cvbr or --hard-cbr for exact bitrate control. See all of the options
# by running ;opusenc -h' from the command line...
OPUSENCOPTS="--vbr --bitrate 128"
# Output type for opus.
OUTPUTTYPE="opus"
# The cd ripping program to use. There are a few choices here: cdda2wav,
# dagrab, cddafs (Mac OS X only) and flac. New to abcde 2.7 is 'libcdio'.
CDROMREADERSYNTAX=cdparanoia
# Give the location of the ripping program and pass any extra options,
# if using libcdio set 'CD_PARANOIA=cd-paranoia'.
CDPARANOIA=cdparanoia
CDPARANOIAOPTS="--never-skip=40"
# Give the location of the CD identification program:
CDDISCID=cd-discid
# Give the base location here for the encoded music files.
OUTPUTDIR="$HOME/Music"
# The default actions that abcde will take.
ACTIONS=cddb,playlist,read,encode,tag,move,clean
# Decide here how you want the tracks labelled for a standard 'single-artist',
# multi-track encode and also for a multi-track, 'various-artist' encode:
OUTPUTFORMAT='${OUTPUT}/${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
VAOUTPUTFORMAT='${OUTPUT}/Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
# Decide here how you want the tracks labelled for a standard 'single-artist',
# single-track encode and also for a single-track 'various-artist' encode.
# (Create a single-track encode with 'abcde -1' from the commandline.)
ONETRACKOUTPUTFORMAT='${OUTPUT}/${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}'
VAONETRACKOUTPUTFORMAT='${OUTPUT}/Various-${ALBUMFILE}/${ALBUMFILE}'
# Create playlists for single and various-artist encodes. I would suggest
# commenting these out for single-track encoding.
PLAYLISTFORMAT='${OUTPUT}/${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}.m3u'
VAPLAYLISTFORMAT='${OUTPUT}/Various-${ALBUMFILE}/${ALBUMFILE}.m3u'
# This function takes out dots preceding the album name, and removes a grab
# bag of illegal characters. It allows spaces, if you do not wish spaces add
# in -e 's/ /_/g' after the first sed command.
mungefilename ()
{
echo "$@" | sed -e 's/^\.*//' | tr -d ":><|*/\"'?[:cntrl:]"
}
# What extra options?
MAXPROCS=2 # Run a few encoders simultaneously
PADTRACKS=y # Makes tracks 01 02 not 1 2
EXTRAVERBOSE=2 # Useful for debugging
COMMENT='abcde version 2.7.2' # Place a comment...
EJECTCD=y # Please eject cd when finished :-)
然后只需运行以下命令:
abcde
设置进程运行!
结论:
在现代版本的Ubuntu下,您会被大量选择从gui和命令行中选择Ogg Opus文件的标记所困扰...
opus标准是一个很新的标准,尚未获得对工具的良好支持。作品流通常用ogg容器包装;当我们不知道操作的程序查看容器流时,它将寻找它知道的流编解码器(通常是音频的vorbis或speex)。
支持的当前状态在opus的Wikipedia页面上声明:https ://en.wikipedia.org/wiki/Opus_(audio_format)#Support_in_software
VLC 2.04版有望获得作品支持,但尚未发布。
我在linux下使用wine和foobar2000来标记opus文件,并且效果很好。
2.0.3-0ubuntu0.12.04.1
(revision 2.0.2-93-g77aa89e
)既不播放也不标记我的作品文件。你有没有尝试过?我指的是http://trac.videolan.org/vlc/ticket/7185。因为OP显然正在寻找标记opus文件的简单解决方案,所以我只是说我正在为此使用foobar,直到本机应用获得对此的更好支持为止。我非常不明白您的评论中出现负面色彩的原因。