1. Installation
Use pip to install (ffmpeg dependencies also need to be installed, it is recommended to use the conda command to install, you do not need to configure the environment):
pip install pydub
2. Import and read audio files
from pydub import AudioSegment audio = AudioSegment.from_file("path/to/file")
3. Play audio
from pydub.playback import play play(audio)
4. Audio duration
duration = audio.duration_seconds # 单位为秒
5. Audio cutting
# 前10秒 audio = audio[:10000] # 后10秒 audio = audio[-10000:] # 从第10秒开始到第20秒结束 audio = audio[10000:20000] # 从第10秒开始到结尾 audio = audio[10000:] # 从开始到第10秒audio = audio[:10000]
6. Audio merge
audio1 = AudioSegment.from_file("path/to/file1") audio2 = AudioSegment.from_file("path/to/file2") audio_combined = audio1 + audio2
7. Audio conversion
audio.export("path/to/new/file", format="mp3")
8. Adjust volume
# 增加10分贝 louder_audio = audio + 10 # 减小10分贝 quieter_audio = audio - 10
9. Split audio
# 等分分割,按大概每三分钟进行分割 for i in range(1, 1000): if 3.3 >= (audio.duration_seconds / (60 * i)) >= 2.8: number = i break chunks = audio[::int(audio.duration_seconds / number * 1000 + 1)] # 切割 # 保存分割后的音频 for i, chunk in enumerate(chunks): chunk.export("path/to/new/file{}.wav".format(title,i), format="wav")
10. Complete code
The following is a complete code that is used to cut the audio before and after, and divide the audio into small segments of appropriate length for saving.
from pydub import AudioSegment # 读取音频文件 audio = AudioSegment.from_file("path/to/file") # 输出视频时长 print('视频时长:', audio.duration_seconds / 60) # 前后切割 start = int(input('前切割n秒,不切割输入0'))*1000 end = int(input('后切割n秒,不切割输入0'))*1000 if start: audio = audio[start:-end] # 计算合适的分割长度 for i in range(1, 1000): if 3.3 >= (audio.duration_seconds / (60 * i)) >= 2.8: number = i break chunks = audio[::int(audio.duration_seconds / number * 1000 + 1)] # 保存分割后的音频 for i, chunk in enumerate(chunks): print('分割后的时长:', chunk.duration_seconds / 60) chunk.export("path/to/new/file{}.wav".format(i), format="wav")
Application case
1. Convert audio files to the specified format
from pydub import AudioSegment # 读取音频文件 audio = AudioSegment.from_file("path/to/file") # 转换为mp3格式并保存 audio.export("path/to/new/file.mp3", format="mp3")
2. Merge multiple audio files into one file
from pydub import AudioSegment # 读取音频文件 audio1 = AudioSegment.from_file("path/to/file1") audio2 = AudioSegment.from_file("path/to/file2") # 合并音频文件并保存 combined_audio = audio1 + audio2 combined_audio.export("path/to/new/file", format="wav")
3 . Make ringtones
from pydub import AudioSegment # 读取音频文件 audio = AudioSegment.from_file("path/to/file") # 切割并保存 start = 10000 end = 15000 ringtone = audio[start:end] ringtone.export("path/to/new/file", format="mp3")
4. Adjust audio volume
from pydub import AudioSegment # 读取音频文件 audio = AudioSegment.from_file("path/to/file") # 增加10分贝 louder_audio = audio + 10 # 减小10分贝 quieter_audio = audio - 10 # 保存调整后的音频 louder_audio.export("path/to/new/file", format="wav") quieter_audio.export("path/to/new/file", format="wav")
Case: Split songs in audio by identifying blank sounds
from pydub import AudioSegment from pydub.silence import split_on_silence # 读取音频文件 audio = AudioSegment.from_file("audio.mp3", format="mp3") # 设置分割参数 min_silence_len = 700 # 最小静音长度 silence_thresh =-10 # 静音阈值,越小越严格 keep_silence = 600 # 保留静音长度 # 计算分割数量 num_segments = int(audio.duration_seconds/60/3) # 每首歌曲大概三分钟,计算歌曲数量 # 分割音频文件 for i in range(-10, 0): segments = split_on_silence(audio, min_silence_len=min_silence_len, silence_thresh=i, keep_silence=keep_silence) if len(segments) <= num_segments: print(f"分割成功,共分割出 {len(segments)} 段") break else: print(f"当前阈值为 {i},分割出 {len(segments)} 段,继续尝试")
First, we Use the AudioSegment.from_file() method to read the audio file, and set the segmentation parameters min_silence_len, silence_thresh and keep_silence to represent the minimum silence length, silence threshold and retained silence length respectively. Among them, the smaller the silence threshold, the more small segments will be segmented, but mis-segmentation may occur; conversely, the larger the silence threshold, the fewer segments will be segmented, but missed segmentation may occur.
Then, we calculate the number of divisions num_segments, that is, how many segments the audio file is divided into. Here we assume that each song is about three minutes, and calculate how many segments it needs to be divided into.
Finally, we use the split_on_silence() method to split the audio file, set the split parameters, and continuously adjust the silence threshold through a loop until the number of segmented segments meets expectations. If the split is successful, jump out of the loop; otherwise, continue trying.
In short, pydub is a very practical audio processing library that can easily perform audio processing, conversion, merging and other operations. At the same time, pydub also has rich application scenarios, such as making ringtones, adjusting volume, etc. It is worth noting that when using pydub, you need to pay attention to the compatibility issues of audio formats.
In addition, you can also perform operations such as encoding, decoding, mixing, and resampling of audio through pydub. Below are some common examples of operations.
Coding, Mixing, Resampling
1. Codec
from pydub import AudioSegment # 读取音频文件 audio = AudioSegment.from_file("path/to/file") # 编码 encoded_audio = audio.set_frame_rate(16000).set_sample_width(2).set_channels(1) # 解码 decoded_audio = encoded_audio.set_frame_rate(44100).set_sample_width(4).set_channels(2)
2. Mixing
from pydub import AudioSegment # 读取音频文件 audio1 = AudioSegment.from_file("path/to/file1") audio2 = AudioSegment.from_file("path/to/file2") # 混音 mixed_audio = audio1.overlay(audio2) # 保存混音后的音频 mixed_audio.export("path/to/new/file", format="wav")
3. Resampling
from pydub import AudioSegment # 读取音频文件 audio =AudioSegment.from_file("path/to/file") # 重采样为44100Hz resampled_audio = audio.set_frame_rate(44100) # 保存重采样后的音频 resampled_audio.export("path/to/new/file", format="wav")
Through pydub, we can easily perform audio encoding, decoding, mixing, resampling and other operations, further expanding the application scenarios of pydub. It should be noted that when performing audio mixing operations, it is necessary to ensure that the sampling rate, number of sampling bits, and number of channels of the two audio files are the same.
Finally, summarize the advantages and disadvantages of pydub.
Advantages:
Lightweight: pydub is a lightweight audio processing library that is easy to install and use.
Rich functions: pydub provides a wealth of audio processing functions, including cutting, merging, converting, adjusting volume, encoding and decoding, mixing, resampling, etc.
Wide application: pydub has a wide range of application scenarios, including audio processing, ringtone production, audio format conversion, speech recognition, etc.
Disadvantages:
Limited compatibility with formats: pydub has limited compatibility with audio formats and does not support all audio formats. The audio needs to be converted to a supported format before processing. .
Mediocre performance: When pydub processes large files, its performance may be average, which requires a certain amount of time and computing resources.
Does not support streaming processing: pydub does not support streaming processing. The entire audio file needs to be read into the memory, resulting in a large memory footprint.
To sum up, pydub is a feature-rich and widely used audio processing library. When using pydub, you need to pay attention to the compatibility issues of audio formats, and pay attention to the performance and memory usage when processing large files. If you need to handle more complex audio tasks, you can consider using other more professional audio processing libraries.
The above is the detailed content of How to use Python audio processing library pydub. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
