วิธีการเข้ารหัสเสียงด้วย Opus codec


30

ตัวแปลงสัญญาณเสียง Opus ดูเหมือนสิ่งที่ดีที่สุดในการบีบอัดข้อมูลเสียง ได้รับการสนับสนุนเมื่อเร็ว ๆ นี้ในเครื่องเล่น ffmpeg และ VLC ล่าสุด อย่างไรก็ตามไม่มีเอกสารที่ฉันสามารถค้นหาเกี่ยวกับวิธีการเข้ารหัสสื่อด้วยจริง ใครช่วยกรุณาพาฉันไปที่เอกสารกล่าวโดยเฉพาะอย่างยิ่งกับเฉพาะเพื่อธง ffmpeg และการใช้งาน? ฉันมีหนังสือเสียงมากมายที่ใช้พื้นที่มากเกินไปและบทประพันธ์ดูเหมือนว่าเป็นรูปแบบที่สมบูรณ์แบบที่จะเก็บไว้


1
คุณไม่ได้พูดถึงระบบปฏิบัติการของคุณ
llogan

คำตอบ:


39
ffmpeg -i <input> -c:a libopus -b:a bitrate <output>

บิตเรตสามารถให้เช่น-b:a 96K96 kBit / s

เอกสาร ffmpegมีรายการของตัวเลือกและคำอธิบายสำหรับ libopus ที่นี่คุณสามารถตั้งค่า-vbrตัวเลือกหรืออื่น-compression_level

ตรวจสอบให้แน่ใจว่าคุณรวบรวม ffmpeg ด้วย--enable-libopus!


มันเยี่ยมมาก! ฉันหาวิธีเข้ารหัสด้วย ffmpeg แต่ไม่รู้เกี่ยวกับแฟล็ก -vbr และ --compression_level นี่คือสิ่งที่ฉันกำลังมองหา!
MrDrMcCoy

6
สิ่งนี้ช่วยฉัน NB vbr onและcompression_level 10เป็นค่าเริ่มต้นและอาจถูกละเว้น ffmpeg.org/ffmpeg-codecs.html#Option-Mapping
Joshua Huber

1
แท้จริงแล้วสิ่งเหล่านี้เป็นค่าเริ่มต้นและโดยส่วนใหญ่แล้วพวกเขาไม่จำเป็นต้องแก้ไข นอกจากนี้ให้สังเกตว่าบิตเรตอยู่ในบิต / s ไม่ใช่ kbits / s ปกติ บิตเรตเริ่มต้นคือ 96000 (96 kbits / s) ซึ่งเป็นค่าที่แน่นอน (แน่นอนว่า) คำสั่งตัวอย่างเพื่อสรุป:ffmpeg -i input.flac -acodec libopus -b:a 128000 output.opus
Gras Double

นี่คือวิธีการใช้ 'แอพลิเคชัน' -application voipพารามิเตอร์ ในฐานะผู้ใช้ ffmpeg ใหม่ฉันพยายามอย่างหนักเล็กน้อยเพื่อหาไวยากรณ์ที่ถูกต้อง
tuxayo

15
  1. ดาวน์โหลดOpus-tools

  2. เข้ารหัส:
    opusenc --bitrate 64 What_A_Feeling.wav What_A_Feeling_64.opus

  3. ถอดรหัส: (เพื่อเล่นในเครื่องเล่นสื่อใด ๆ มีประโยชน์หากเครื่องเล่นสื่อของคุณยังไม่สนับสนุนบทประพันธ์):
    opusdec What_A_Feeling_64.opus What_A_Feeling_opus64.wav

(What_A_Feeling เป็นชื่อเพลง)

ตัวเลือกโดยละเอียดปรากฏขึ้นเมื่อทำงานopusencด้วยตัวเอง:

Usage: opusenc [options] input_file output_file.opus

Encodes input_file using Opus.
It can read the WAV, AIFF, FLAC, Ogg/FLAC, or raw files.

General options:
 -h, --help         This help
 -V, --version      Version information
 --quiet            Quiet mode

input_file can be:
  filename.wav      file
  -                 stdin

output_file can be:
  filename.opus     compressed file
  -                 stdout

Encoding options:
 --bitrate n.nnn    Target bitrate in kbit/sec (6-256/channel)
 --vbr              Use variable bitrate encoding (default)
 --cvbr             Use constrained variable bitrate encoding
 --hard-cbr         Use hard constant bitrate encoding
 --comp n           Encoding complexity (0-10, default: 10 (slowest))
 --framesize n      Maximum frame size in milliseconds
                      (2.5, 5, 10, 20, 40, 60, default: 20)
 --expect-loss      Percentage packet loss to expect (default: 0)
 --downmix-mono     Downmix to mono
 --downmix-stereo   Downmix to stereo (if >2 channels)
 --max-delay n      Maximum container delay in milliseconds
                      (0-1000, default: 1000)

Diagnostic options:
 --serial n         Forces a specific stream serial number
 --save-range file  Saves check values for every frame to a file
 --set-ctl-int x=y  Pass the encoder control x with value y (advanced)
                      Preface with s: to direct the ctl to multistream s
                      This may be used multiple times

Metadata options:
 --comment          Add the given string as an extra comment
                      This may be used multiple times
 --artist           Author of this track
 --title            Title for this track
 --album            Album or collection this track belongs to
 --date             Date for this track
 --genre            Genre for this track
 --picture          Album art for this track
                      More than one --picture option can be specified.
                      Either a FILENAME for the picture file or a more
                      complete SPECIFICATION form can be used. The
                      SPECIFICATION is a string whose parts are
                      separated by | (pipe) characters. Some parts may
                      be left empty to invoke default values. A
                      FILENAME is just shorthand for "||||FILENAME".
                      The format of SPECIFICATION is

                      [TYPE]|[MIME-TYPE]|[DESCRIPTION]|[WIDTHxHEIGHT
                      xDEPTH[/COLORS]]|FILENAME

                      TYPE is an optional number from one of:
                      0: Other
                      1: 32x32 pixel 'file icon' (PNG only)
                      2: Other file icon
                      3: Cover (front)
                      4: Cover (back)
                      5: Leaflet page
                      6: Media (e.g., label side of a CD)
                      7: Lead artist/lead performer/soloist
                      8: Artist/performer
                      9: Conductor
                      10: Band/Orchestra
                      11: Composer
                      12: Lyricist/text writer
                      13: Recording location
                      14: During recording
                      15: During performance
                      16: Movie/video screen capture
                      17: A bright colored fish
                      18: Illustration
                      19: Band/artist logotype
                      20: Publisher/studio logotype

                      The default is 3 (front cover). There may only be
                      one picture each of type 1 and 2 in a file.

                      MIME-TYPE is optional. If left blank, it will be
                      detected from the file. For best compatibility
                      with players, use pictures with a MIME-TYPE of
                      image/jpeg or image/png. The MIME-TYPE can also
                      be --> to mean that FILENAME is actually a URL to
                      an image, though this use is discouraged. The
                      file at the URL will not be fetched. The URL
                      itself is stored in the metadata.

                      DESCRIPTION is optional. The default is an empty
                      string.

                      The next part specifies the resolution and color
                      information. If the MIME-TYPE is image/jpeg,
                      image/png, or image/gif, you can usually leave
                      this empty and they can be detected from the
                      file. Otherwise, you must specify the width in
                      pixels, height in pixels, and color depth in
                      bits-per-pixel. If the image has indexed colors
                      you should also specify the number of colors
                      used. If possible, these are checked against the
                      file for accuracy.

                      FILENAME is the path to the picture file to be
                      imported, or the URL if the MIME-TYPE is -->.
 --padding n        Extra bytes to reserve for metadata (default: 512)
 --discard-comments Don't keep metadata when transcoding
 --discard-pictures Don't keep pictures when transcoding

Input options:
 --raw              Raw input
 --raw-bits n       Set bits/sample for raw input (default: 16)
 --raw-rate n       Set sampling rate for raw input (default: 48000)
 --raw-chan n       Set number of channels for raw input (default: 2)
 --raw-endianness n 1 for bigendian, 0 for little (defaults to 0)
 --ignorelength     Always ignore the datalength in Wave headers

ขอบคุณ แต่ฉันหวังว่าจะมีรายละเอียดเพิ่มขึ้นอีกเล็กน้อย มีตัวเลือกอัตราบิตผันแปรหรือไม่? ฉันสามารถส่งผ่านธงอื่น ๆ เพื่อปรับกระแสข้อมูลเสียงให้เหมาะสมที่สุดได้อย่างไร
MrDrMcCoy

1
@nakedhitman --vbrตัวเลือกเป็นค่าเริ่มต้น ดูหน้า man สำหรับ opusenc นอกจากนี้คุณยังสามารถเข้ารหัสด้วย ffmpeg แต่จะต้องมีการรวบรวมกับ--enable-libopusหลังจากติดตั้งlibopus
llogan

สำหรับการรับแนวคิด (ไม่ใช่สำหรับการแปลงแบบเป็นชุด) เวอร์ชันออนไลน์เช่นนี้อาจเป็นประโยชน์ ในกรณีที่แผนของคนหนึ่งคือแปลงคอลเลกชันทั้งหมด opusinfo (หรือบางส่วนopus-tools) อาจบอกได้ว่าเครื่องมือเข้ารหัสที่เลือกทำงานได้ดีหรือไม่
Rainer Rillke

3

คำสั่ง Opus Codec ที่ดีที่สุดใน DOS / Windows Command จะเป็น:

สำหรับ lib 1.3 ไฟล์ที่เล็กที่สุด (คุณภาพเทป):

Opusenc a.wav a.opus --bitrate 24 --framesize 40 --discard-comments --discard-pictures

คุณจะ:

a- ที่ 24kbits ยังคงมีเอาต์พุตเสียงโซนิค 16kHz (32kHz) ในขนาดที่เล็กมาก เอาท์พุทขนาดเล็กและโซนิคจะลดลงถึง 11kHz

b- เพิ่มขนาดเฟรม (บันทึกข้อมูลสองสามบิต (ประมาณ 6%) โดยไม่สูญเสียคุณภาพ)

c- ทิ้งข้อมูลแท็กที่ไม่จำเป็นและครอบคลุมรูปภาพที่จะขยายขนาดไฟล์เท่านั้น

สำหรับ lib 1.3 การสตรีม (ใกล้กับคุณภาพซีดี) ให้ใช้ '--bitrate 52' แทน '24'

ค่าเริ่มต้นใน 1.2 คือ 48kbits แต่ใช้ 52 ใน 1.3 โดยมีการตั้งค่า 'framesize' เป็น 40 ขนาดไฟล์ของคุณจะเท่ากัน แต่มีสิ่งที่ได้ยินน้อยกว่ามาก

52 kbits กับ framesize 40 มีคุณภาพเทียบเท่ากับ 160kbits MP3 ในขนาดที่น้อยกว่า 1 / 3rd ในขณะที่ 48kbits กับ 1.2 เท่ากับ MP3 128kbits หรือมีขนาดเล็กลงเพียง 2.5 เท่า

เพื่อคุณภาพใกล้เคียงกันคุณจะต้องอยู่ระหว่าง 80 ถึง 96kbits ฉันแทบจะไม่เคยใช้สิ่งนี้เพราะฉันต้องการให้เสียงของฉันเล็กที่สุด

มากกว่า 96kbits นั้นดีสำหรับการแก้ไขเท่านั้นและไม่มีใครได้ยินความแตกต่างระหว่างไฟล์ที่เข้ารหัสดั้งเดิมและไฟล์ Opus

ที่ถูกกล่าวว่าฉันยังไม่ทราบว่ามันทำงานอย่างไรทั้งหมดใน Linux


ผมได้รับข้อผิดพลาดในการพยายามที่หนึ่งทั้งบน Linux และ Unrecognized option '-framesize'. Error splitting the argument list: Option not foundWindows: รุ่น ffmpeg คือ 4.0.2
sukhmel
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.