ये बेहद मददगार रहे हैं। प्रेरणा के लिए धन्यवाद। हालाँकि यह फिलहाल अपूर्ण है, फिर भी मुझे कुछ योगदान देना है। मैंने द स्टीव हैरिस डॉक्यूमेंटेशन में पाया कि कंप्रेसर के कई फ्लेवर हैं, और मैंने स्टीरियो का उपयोग करने के लिए चुना। इसने पल्स ऑडियो वॉल्यूम कंट्रोल का उपयोग करके क्रोम और वीएलसी जैसे कई अनुप्रयोगों पर कंप्रेसर लगाने के लिए जटिल किया, लेकिन मुझे इसका परिणाम पसंद है। एक कंप्रेसर का उपयोग करने के लिए मेरी प्रेरणा मात्रा पर एक बहुत ही सख्त कम और ऊपरी सीमा रखना है। देर रात तक घर में किसी को न जगाने के लिए, मैं मीडिया में बोलने वाले पात्रों को सुनने के लिए वॉल्यूम को लगातार चालू नहीं करना चाहता था, केवल जब भी सुपरहीरो एक्शन होता है या कमर्शियल आता है, तब इसे वापस करने के लिए जल्दी करना । मैंने यहां प्रेरणा का पालन किया और वास्तविक समय में मूल्यों को समायोजित किया। फिर मैंने अपने इच्छित मूल्यों को लिया और उन्हें वापस नमूना कोड में डाल दिया। संक्षेप में, नमूना कोड मैं उपरोक्त उदाहरण से बेशर्मी से उधार लेने में योगदान कर रहा हूं, लेकिन स्टीरियो कंप्रेसर को काफी सख्त ऊपरी और निचले वॉल्यूम सीमा के साथ सुविधाएँ। अंत में, मैंने इसे एक स्क्रिप्ट के रूप में रखा, जो पूरी तरह से काम नहीं कर रही है। यह set_default लाइन को पसंद नहीं करता है। मुझे उम्मीद है कि यह समुदाय के लिए उपयोगी है।
#!/bin/sh
# ComperssorScript.sh
# Script to start PulseAudio Compressor with desired settings
# Original: 2016 September 17
pacmd load-module module-ladspa-sink sink_name=compressor plugin=sc4_1882 label=sc4 control=9,5,63,-6,15,3,49
set-default-sink compressor
# The parameters (the control=1,1.5,401,-30,20,5,12 for example) for this compressor are described in Steve Harris' LADSPA Plugin Docs:
# RMS/peak: The balance between the RMS and peak envelope followers. RMS is generally better for subtle, musical compression and peak is better for heavier, fast compression and percussion.
# 9, Attack time (ms): The attack time in milliseconds.
# 5, Release time (ms): The release time in milliseconds.
# 63, Threshold level (dB): The point at which the compressor will start to kick in.
# 6, Ratio (1:n): The gain reduction ratio used when the signal level exceeds the threshold.
# -15, Knee radius (dB): The distance from the threshold where the knee curve starts.
# 3, Makeup gain (dB): Controls the gain of the makeup input signal in dB's.
# 49, Amplitude (dB): The level of the input signal, in decibels.
# no value was placed here
# Gain reduction (dB): The degree of gain reduction applied to the input signal, in decibels.
# Due to a limitation of PulseAudio, it is not possible to adjust them in real time.
# no value was placed here