कैसे ओपस कोडेक के साथ ऑडियो सांकेतिक शब्दों में बदलना करने के लिए?


30

ओपस ऑडियो कोडेक ऑडियो कंप्रेस करने के लिए अब तक की सबसे अच्छी चीज़ है। यह हाल ही में नवीनतम ffmpeg और VLC खिलाड़ियों में समर्थित हो गया है। हालाँकि, कोई दस्तावेज नहीं है जो मुझे पता चल सके कि वास्तव में इसके साथ मीडिया को कैसे एनकोड किया जाए। कृपया किसी ने मुझे डॉक्स के लिए निर्देशित कर सकते हैं, अधिमानतः ffmpeg झंडे और उपयोग के लिए विशेष रूप से? मेरे पास बहुत सारे ऑडियोबुक हैं जो बहुत अधिक जगह ले रहे हैं और ओपस उन्हें रखने के लिए सही प्रारूप की तरह दिखता है।


1
आपने अपने OS का उल्लेख नहीं किया।
ललगन

जवाबों:


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
इससे मुझे मदद मिली। एनबी, vbr onऔर compression_level 10चूक हैं और शायद छोड़ा जा सकता है। ffmpeg.org/ffmpeg-codecs.html#Option-Mapping
जोशुआ ह्यूबर

1
वास्तव में, ये डिफ़ॉल्ट मान हैं, और ज्यादातर मामलों में उन्हें संशोधित करने की आवश्यकता नहीं है। इसके अलावा, ध्यान दें कि बिटरेट बिट्स / एस में है, न कि सामान्य केबिट्स / एस में। डिफ़ॉल्ट बिटरेट 96000 (96 kbit / s) है, जो (निश्चित रूप से) एक अच्छा मूल्य है। सारांश के लिए नमूना आदेश:ffmpeg -i input.flac -acodec libopus -b:a 128000 output.opus
ग्रास डबल

यहाँ 'एप्लीकेशन' पैरामीटर का उपयोग कैसे किया जाता है -application voip। एक नए ffmpeg उपयोगकर्ता के रूप में मैंने सही सिंटैक्स को खोजने के लिए थोड़ा संघर्ष किया।
टक्सायो

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 21

1
@nakedhitman --vbrविकल्प डिफ़ॉल्ट है। Opusenc के लिए मैन पेज देखें। तुम भी ffmpeg के साथ सांकेतिक शब्दों में बदलना कर सकते हैं, लेकिन यह libopus--enable-libopus स्थापित करने के बाद संकलित करने की आवश्यकता है
लोलगन

एक विचार (बैच रूपांतरण के लिए नहीं) प्राप्त करने के लिए, इस तरह का एक ऑनलाइन संस्करण सहायक हो सकता है। यदि किसी की योजना एक संपूर्ण संग्रह को बदलने की है, तो opusinfo (इसका एक हिस्सा opus-tools) यह भी बता सकता है कि चुने हुए एन्कोडिंग टूल ने अच्छा प्रदर्शन किया है या नहीं।
रेनर रिल्के

3

डॉस / विंडोज कमांड में सबसे अच्छा Opus Codec कमांड होंगे:

1.3 के लिए, सबसे छोटी फाइल (टेप गुणवत्ता):

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

आप:

a- 24kbits में अभी भी एक सुपर छोटे आकार पर 16kHz (32kHz स्टीरियो) ध्वनि उत्पादन होता है। कोई भी छोटा और सोनिक आउटपुट 11kHz तक घट जाएगा

बी- बढ़ाएँ बढ़ाएँ (गुणवत्ता के कुछ बिट्स (लगभग 6%), गुणवत्ता में उल्लेखनीय नुकसान के बिना)

c- अनावश्यक TAG जानकारी को त्यागें, और उन चित्रों को कवर करें जो केवल फ़ाइल का आकार बड़ा करेंगे।

1.3 के लिए, स्ट्रीमिंग (सीडी की गुणवत्ता के पास) '24' के बजाय '--बिट्रेट 52' का उपयोग करें।

1.2 में डिफ़ॉल्ट 48kbit है, लेकिन 1.3 में 52 का उपयोग करते हुए, 'फ्रेमाइज़' के सेट से 40 तक, आपकी फ़ाइल का आकार बराबर है, लेकिन बहुत कम कलाकृतियां श्रव्य हैं।

40 फ्रेम के साथ 52 kbits, यकीनन गुणवत्ता में 160kbits एमपी 3 के बराबर है, कम से कम 1 / 3rd आकार; जबकि 1.2 पर 48kbits 128kbits एमपी 3 के बराबर है, या आकार में केवल 2.5x छोटा है।

समान गुणवत्ता के पास, आपको 80 से 96kbits के बीच की आवश्यकता होगी। मैं शायद ही कभी इसका उपयोग करता हूं, जैसा कि मैं चाहता हूं कि मेरा ऑडियो जितना संभव हो उतना छोटा हो।

96kbits से अधिक, केवल संपादन के लिए अच्छा है, और कोई भी मूल और ओपस एन्कोडेड फ़ाइल के बीच अंतर नहीं सुन सकता है।

यह कहा जा रहा है, मुझे अभी तक नहीं पता है कि यह सब लिनक्स में कैसे काम करता है।


मुझे एक त्रुटि यह मिली कि दोनों linux और windows पर एक कोशिश कर रहा हूँ Unrecognized option '-framesize'. Error splitting the argument list: Option not found:। ffmpeg का संस्करण 4.0.2
sukhmel
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.