Crates.io | audiyo |
lib.rs | audiyo |
version | 0.2.0 |
source | src |
created_at | 2024-09-05 19:09:11.075458 |
updated_at | 2024-09-05 19:09:11.075458 |
description | Increase/decrease the volume of audio & video files with a simple CLI command. |
homepage | https://github.com/ooojustin/audiyo |
repository | https://github.com/ooojustin/audiyo |
max_upload_size | |
id | 1365027 |
size | 15,941 |
Open source command line utility to adjust volume, sample rate, channels, and bitrate of audio/video files.
Written in Rust, and uses FFmpeg behind the scenes.
You can get started by using the audiyo
command to adjust the volume of an audio or video file.
For example, to decrease the volume by 10 dB, use:
audiyo input.mp4 output.mp4 --volume "-10"
Or to increase the volume by 5 dB:
audiyo input.mp4 output.mp4 --volume "5"
Command | Description | Default |
---|---|---|
--volume |
Change volume in dB (positive to increase, negative to decrease). | 10 |
--sample-rate |
Set the audio sample rate in Hz (e.g., 44100 for 44.1 kHz). | 44100 |
--channels |
Set the number of audio channels (e.g., 2 for stereo). | 2 |
--bitrate |
Set the audio bitrate (e.g., 128k). | 128k |
-h, --help | Print help information. | 👋 |
For more details, the audiyo --help
command may be useful.
It will output the following information:
$ audiyo --help
Open source command line utility to adjust volume, sample rate, channels, and bitrate of audio/video files.
Usage: audiyo.exe [OPTIONS] <input> <output>
Arguments:
<input> Path to the input video file.
<output> Path to the output video file.
Options:
-v, --volume <volume> Volume change in dB. Use positive values to increase and negative to decrease. [default: 10]
--sample-rate <sample-rate> Audio sample rate in Hz. [default: 44100]
--channels <channels> Number of audio channels. [default: 2]
--bitrate <bitrate> Audio bitrate. [default: 128k]
-h, --help Print help
-V, --version Print version
If you have any questions about this program or want to provide feedback, feel free to: