# Driver Code
if __name__ == '__main__'
  main = BlaleLimit(n_facts=4)
  main.about_me()

Facts About Me

  • 🔭 I’m currently looking for job opportunities and a bright future.
  • 🌱 I’m currently learning the GNU/Linux Operating System.
  • ⚡ Fun Fact: It's all coming together.
  • 💻 Interest: Ricing and customizing desktops to improve my workflow.
  • 🥅 Goal: To sharpen my current skills as a developer.

FFmpeg Simple Audio Processing

# The volume of an audio can be adjusted to 50% using FFmpeg
ffmpeg -i input.wav -af "volume=0.50" output.wav

# The volume can also be normalized through
ffmpeg -i input.mp3 -filter:a loudnorm output.mp3

# The `-an` flag can also be added to mute audio
ffmpeg -i input.mp4 -an output.mp4

Sample Audio