เพิ่มแท็กลงในไฟล์ Ogg Opus


10

ฉันมักจะแท็กไฟล์ Ogg Vorbis ด้วย EasyTAG 2.1.7

ตอนนี้ฉันต้องการผลิตไฟล์ Ogg Opus และฉันไม่สามารถเขียนแท็กลงในไฟล์ได้ EasyTAG มีไฟล์ Ogg ที่ไม่มี Vorbis หรือสตรีม Speex

เครื่องมืออื่นเช่น lltag แยกข้อความเช่น "ข้ามไฟล์นี้ด้วยประเภทที่ไม่รู้จัก"

คำแนะนำบางอย่าง? ขอบคุณ

คำตอบ:


3

เวลามีการเปลี่ยนแปลงเนื่องจากคำถามนี้ถูกถามครั้งแรกและตอบแล้ว! ตอนนี้ในเดือนตุลาคม 2560 ไฟล์ Ogg Opus ได้กลายเป็นกระแสหลักมากขึ้นและมีตัวเลือกที่ดีหลายอย่างใน Ubuntu เพื่อให้สามารถติดแท็กไฟล์ Ogg Opus ของคุณได้

ฉันให้รายละเอียด 3 วิธีด้านล่างที่ฉันแนะนำเป็นการส่วนตัว:

1. EasyTag

EasyTag เวอร์ชันใหม่สามารถแท็กไฟล์ Ogg Opus

แก้ไข : ดังที่ได้กล่าวมาแล้วนี่เป็นความคิดที่ดีน้อยเนื่องจากมีปัญหาที่ไม่สามารถแก้ไขได้ด้วยการติดแท็กไฟล์ Ogg Vorbis ที่เสียหาย จากประสบการณ์ของฉันรุ่นที่ปลอดภัยของ EasyTag สำหรับ Ogg Vorbis คือ 2.4.2 และรุ่นนี้ทำให้ฉันไม่มีปัญหาส่วนตัว

ก่อนติดตั้ง EasyTag:

sudo apt-get install easytag

จากนั้นเปิดไฟล์ Ogg Opus ของคุณด้วย EasyTag เพื่อแก้ไขแท็ก! ภาพหน้าจอจากระบบของฉันเองที่เห็นด้านล่าง:

ป้อนคำอธิบายรูปภาพที่นี่

ตัวเลือกที่ดีอื่น ๆ อาจเป็น 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. การคัดลอกซีดีเพลงไปยัง Ogg Opus + การติดแท็ก

อีกครั้งถ้าคุณกระตือรือร้นในบรรทัดคำสั่งและคุณกำลังสร้างไฟล์เสียง Ogg Opus จากซีดีเพลงภายใต้ Ubuntu รุ่นใหม่กว่าคุณสามารถใช้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

เพื่อตั้งค่ากระบวนการทำงาน!

สรุปแล้ว:

ภายใต้อูบุนตูเวอร์ชันใหม่คุณจะมีทางเลือกมากมายในการติดแท็กไฟล์ Ogg Opus ของคุณด้วยตัวเลือกที่ดีจากทั้ง gui และ command line ...


คำตอบอย่างละเอียดมาก - ทำงานได้ดีและขอบคุณ!
DaimyoKirby

ขอโทษนะ แต่ EasyTag นั้นไม่ต้องไปเพราะbugzilla.gnome.org/show_bug.cgi?id=776110ซึ่งไม่ได้รับความรักสักพักแล้ว โดยสรุปหากคุณใช้ EasyTag ในไฟล์ Ogg / Opus ของคุณคุณจะต้องทิ้งส่วนหัวและทำลายพวกเขา แทบ "ไม่มีปัญหาอย่างแน่นอน" ห้ามใช้
ทดสอบ

@tamester ขออภัยฉันช้ามากฉันได้เพิ่มรายละเอียดของข้อผิดพลาดนี้ในคำตอบ ...
andrew.46

2

มาตรฐานบทประพันธ์ค่อนข้างใหม่และยังไม่ได้รับการสนับสนุนที่ดีสำหรับเครื่องมือ สตรีมบทประพันธ์มักจะถูกห่อในคอนเทนเนอร์ ogg เมื่อโปรแกรมที่เราไม่ทราบว่าบทประพันธ์มองไปที่สตรีมคอนเทนเนอร์มันจะมองหาตัวแปลงสัญญาณสตรีมที่รู้จัก (โดยปกติคือ vorbis หรือ speex สำหรับเสียง)

สถานะการสนับสนุนปัจจุบันระบุไว้ในหน้า Wikipedia ของบทประพันธ์: https://en.wikipedia.org/wiki/Opus_(audio_format)#Support_in_software

VLC เวอร์ชัน 2.04 คาดว่าจะได้รับการสนับสนุนบทประพันธ์ แต่ยังไม่ออก

ฉันใช้ไวน์กับfoobar2000เพื่อแท็กไฟล์ opus ภายใต้ linux และทำงานได้ดี


ขอบคุณคำตอบที่ให้ข้อมูลอย่างมากเปิดเผยสถานะปัจจุบันของการสนับสนุน opus บน Linux ฉันจะแท็กไฟล์กับ foobar2000 โดยขณะนี้ :)
เฆSuárez de Lis

สิ่งเดียวที่คำตอบนี้แสดงคือความเข้าใจที่ไม่ดีของคำถามจริง Foobar แน่นอน โปรแกรมที่สามารถแก้ไขแท็กไม่จำเป็นต้องถอดรหัสสตรีมในคอนเทนเนอร์ โดยวิธี VLC 2.0.3-0ubuntu0.12.04.1 เล่นเนื้อหาบทประพันธ์แล้ว VLC! = แพ็คเกจ VLC ใน Ubuntu
LiveWireBT

1
ดี VLC 2.0.3-0ubuntu0.12.04.1( revision 2.0.2-93-g77aa89e) ไม่เล่นหรือแท็ก opus ไฟล์สำหรับฉัน คุณเคยลองไหม ฉันหมายถึงhttp://trac.videolan.org/vlc/ticket/7185 เห็นได้ชัดว่า OP กำลังมองหาวิธีแก้ปัญหาที่ง่ายในการติดแท็กไฟล์ opus ฉันเพียงแค่ระบุว่าฉันใช้ foobar สำหรับสิ่งนั้นจนกระทั่งแอพพื้นฐานได้รับการสนับสนุนที่ดีกว่า ฉันล้มเหลวอย่างมากที่จะเข้าใจสาเหตุของการลบความคิดเห็นของคุณ
phoibos

ขออภัยฉันเพิ่งรู้ว่าไฟล์ oga บาง podcasters ได้เริ่มเผยแพร่เป็นไฟล์ Vorbis ปกติและไฟล์ Opus จริงไม่ทำงานอย่างแม่นยำในขณะนี้ แม้ว่าจะมีความสับสนเกี่ยวกับประเภทและคอนเทนเนอร์ของ MIME และไฟล์ oga ทั้งหมดที่เผยแพร่ในสถานที่นั้นฉันก็ไม่คาดคิด
LiveWireBT
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.