私は通常、Ogg VorbisファイルにEasyTAG 2.1.7のタグを付けます。
さて、Ogg Opusファイルを作成したいのですが、ファイルにタグを書き込むことができません。EasyTAGは、VorbisまたはSpeexストリームを持たないOggファイルについて扱います。
lltagなどの別のツールは、「このファイルを不明なタイプでスキップする」のようなメッセージを吐き出します。
いくつかのアドバイス?ありがとう。
私は通常、Ogg VorbisファイルにEasyTAG 2.1.7のタグを付けます。
さて、Ogg Opusファイルを作成したいのですが、ファイルにタグを書き込むことができません。EasyTAGは、VorbisまたはSpeexストリームを持たないOggファイルについて扱います。
lltagなどの別のツールは、「このファイルを不明なタイプでスキップする」のようなメッセージを吐き出します。
いくつかのアドバイス?ありがとう。
回答:
この質問が最初に質問されてから回答されてから、時間が変更されました!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オーディオファイルを作成している場合は、1つのコマンドで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標準は非常に新しいものであり、ツールのサポートはまだ十分ではありません。opusストリームは通常、oggコンテナーにラップされます。opusを知らないプログラムがコンテナストリームを見ると、それが知っているストリームコーデックを探します(通常、オーディオにはvorbisまたはspeex)。
現在のサポート状況は、opusのWikipediaページに記載されています:https : //en.wikipedia.org/wiki/Opus_(audio_format)#Support_in_software
VLCバージョン2.04はopusサポートを取得する予定ですが、まだリリースされていません。
Linuxでopusファイルにタグを付けるためにfoobar2000で wineを使用しましたが、うまく機能します。
2.0.3-0ubuntu0.12.04.1
(revision 2.0.2-93-g77aa89e
)はopusファイルを再生したりタグ付けしたりしません。やってみました?私はhttp://trac.videolan.org/vlc/ticket/7185を参照していました。OPは明らかにopusファイルにタグを付ける簡単なソリューションを探していたので、ネイティブアプリがより適切なサポートを得るまで、foobarを使用していると述べていました。私はあなたのコメントのネガティブなアンダートーンの理由を理解できませんでした。