معرفی شرکت ها


audio-splitter-0.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A CLI tool for splitting audio files into equally-sized chunks or based on periods of silence
ویژگی مقدار
سیستم عامل -
نام فایل audio-splitter-0.1.0
نام audio-splitter
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Artem Vasilev
ایمیل نویسنده temavasilev@pm.me
آدرس صفحه اصلی https://github.com/temavasilev/audio-splitter
آدرس اینترنتی https://pypi.org/project/audio-splitter/
مجوز -
# Audio File Splitter `audio_splitter/main.py` is a command-line tool for splitting audio files into equally-sized chunks or based on silence. This Python script uses the `pydub` library for handling various audio formats. ## Why does this exist? As someone who enjoys to listen to spoken word every night, I often listen to podcasts on my old MP3 player before going to sleep. However, I found myself growing bored of listening to the same first 5 minutes of each episode every night. To mix things up and always have something new to listen to, I created this script to break down podcast episodes into smaller chunks. Now I can jump around different parts of the episodes and enjoy a fresh listening experience each time. ## Usage To use the script, follow these steps: ```bash python audio_splitter/main.py input_file output_dir [--chunk_length CHUNK_LENGTH] [--output_format OUTPUT_FORMAT] [--silence_based] ``` Replace input_file with the path to your audio file and output_dir with the path to the output directory where you want to save the chunks. ## Options ```bash --chunk_length CHUNK_LENGTH: Length of each chunk in milliseconds (default: 300000 ms, or 5 minutes). Ignored if --silence_based is set. --output_format OUTPUT_FORMAT: Output format for the audio chunks (default: wav). Supported formats include wav, mp3, and ogg. --silence_based: Split the audio based on silence instead of fixed-size chunks. If set, --chunk_length is ignored and the script ensures that the generated chunks are at least the specified length. ``` ## Examples Split an audio file into 5-minute (default) chunks: ```bash python audio_splitter/main.py input_file.mp3 output_dir ``` Split an audio file into 10-minute chunks and save them in the MP3 format: ```bash python audio_splitter/main.py input_file.mp3 output_dir --chunk_length 600000 --output_format mp3 ``` Split an audio file based on silence, ensuring that the chunks are at least 5 minutes long: ```bash python audio_splitter/main.py input_file.mp3 output_dir --silence_based ``` Split an audio file based on silence, ensuring that the chunks are at least 10 minutes long: ```bash python audio_splitter/main.py input_file.mp3 output_dir --chunk_length 600000 --silence_based ```


نیازمندی

مقدار نام
- pydub
- tqdm


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl audio-splitter-0.1.0:

    pip install audio-splitter-0.1.0.whl


نصب پکیج tar.gz audio-splitter-0.1.0:

    pip install audio-splitter-0.1.0.tar.gz