向 Ogg Opus 文件添加标签

向 Ogg Opus 文件添加标签

我通常使用 EasyTAG 2.1.7 标记 Ogg Vorbis 文件。

现在,我想制作 Ogg Opus 文件,但无法将标签写入文件。EasyTAG 担心 Ogg 文件没有 Vorbis 或 Speex 流。

另一个工具(例如 lltag)会发出类似“跳过此类型未知的文件”的消息。

有什么建议吗?谢谢。

答案1

自从第一次提出并回答这个问题以来,时代已经变了!现在,在 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 文件添加标签...

答案2

opus 标准相当新,尚未获得良好的工具支持。opus 流通常包装在 ogg 容器中;当不了解 opus 的程序查看容器流时,它会查找它知道的流编解码器(通常是音频的 vorbis 或 speex)。

当前支持状态在 opus 的维基百科页面上有说明: https://en.wikipedia.org/wiki/Opus_(audio_format)#Support_in_software

VLC 2.04 版本有望获得 opus 支持,但目前尚未推出。

我用葡萄酒foob​​ar2000在linux下标记opus文件,效果很好。

答案3

我更喜欢使用“Ex Falso”。它有“路径标签”、“重命名文件”、“曲目编号”等功能: https://quodlibet.readthedocs.io/en/latest/screenshots.html

之前我用它来处理 mp3 文件。但现在我用它来处理 opus 文件,效果很好。我当前的 Ex Falso 版本是 4.2.1(操作系统是 Ubuntu 20.04)。它可以从“Ubuntu 软件”中心安装。

答案4

喜欢命令行的用户有多个选项,一个tracktag来自python-audiotools包来写一个Vorbis 评论到 Opus 文件。opusenc仅在转码时获取元数据。对于 Debian/Ubuntu,它是一种快速

apt install audiotools

用法:

tracktag --name "title" --artist "interpret" file.opus

另一个编辑选项任何音乐文件是music-tag

pip3 install --user music_tag
alias musictag='python3 -m music_tag'

用法:

musictag --set "title:Title" --set "artist:Artist" --set "album:Album" file.opus

这取决于诱变剂做到这一点,从而获得广泛的文件支持。

相关内容