如果您曾經想改變歌曲的音高而不改變其速度,這篇博文適合您。變調是音樂家、DJ 和音訊工程師的常見任務。在本教程中,我們將探索如何使用 Python 和 pydub 庫降低歌曲的音調,並將此過程自動應用於資料夾中的多首歌曲。
在音樂中,變調意味著改變歌曲的音調(升高或降低)而不加快或減慢它的速度。這可用於:
將一首歌的調與另一首歌相匹配
將歌曲移調至不同調的樂器
建立混音或混搭
我們將使用 Python 函式庫 pydub 來操作音訊檔案。您可以使用 pip 安裝它:
pip install pydub
此外,pydub 需要 ffmpeg 來處理 MP3 等音訊檔案。您可以透過終端機安裝 ffmpeg:
sudo apt install ffmpeg
現在讓我們深入研究自動為資料夾中的多首歌曲進行變調的 Python 腳本。這個腳本循環遍歷歌曲資料夾中的文件,將它們調低半音(半音 = -1),並將新文件儲存到輸出資料夾。
import os from pydub import AudioSegment # Function to shift pitch down def pitch_shift(audio, semitones): # Adjust sample rate to shift pitch new_sample_rate = int(audio.frame_rate * (2.0 ** (semitones / 12.0))) return audio._spawn(audio.raw_data, overrides={'frame_rate': new_sample_rate}).set_frame_rate(audio.frame_rate) # Input and output folders input_folder = './songs' output_folder = './output' # Ensure the output folder exists os.makedirs(output_folder, exist_ok=True) # Loop through all files in the songs folder for filename in os.listdir(input_folder): # Check if the file is an audio file (e.g., mp3 or wav) if filename.endswith(".mp3") or filename.endswith(".wav"): # Construct the full file path input_path = os.path.join(input_folder, filename) output_path = os.path.join(output_folder, filename) # Load the audio file audio = AudioSegment.from_file(input_path) # Shift pitch down by a half-step (semitone = -1) shifted_audio = pitch_shift(audio, -1) # Export the pitch-shifted audio to the output folder shifted_audio.export(output_path, format="mp3") print(f"Processed and saved: {output_path}")
導入庫:
我們匯入 os 來處理檔案目錄,並從 pydub 匯入 AudioSegment 來操作音訊檔案。
變調功能:
itch_shift 函數調整音訊的取樣率。當我們改變取樣率時,音調就會改變。在這種情況下,我們使用以下公式計算新的取樣率,將音高降低一個半音:
new_sample_rate = int(audio.frame_rate * (2.0 ** (半音 / 12.0)))
輸入與輸出資料夾:
我們定義將讀取音訊檔案並保存變調版本的資料夾。如果輸出資料夾不存在,則會建立它。
循環播放歌曲:
使用 os.listdir(),我們循環遍歷歌曲資料夾中的每個檔案。該腳本在處理檔案之前會檢查該檔案是否為音訊檔案(.mp3 或 .wav)。對於每個文件:
匯出與回饋:
處理完成後,變調後的歌曲將保存在輸出資料夾中,並列印確認訊息。
確保歌曲資料夾中有音訊文件,然後執行腳本:
python -m pitch_down.py
移調後的檔案將保存在輸出資料夾中。
您可以輕鬆地將此腳本修改為:
透過傳遞正值來提高音訊的音調(例如,pitch_shift(audio, 1) 表示升高半步)。
透過在條件檢查中新增其他副檔名(如 .ogg 或 .flac)來處理不同的檔案格式。
透過調整半音參數來移動不同數量的半音。
此腳本是一種使用 Python 對多個音訊檔案進行音高轉換的簡單且強大的方法。使用 pydub 和 ffmpeg,您可以大量操作音訊文件,使音樂家、製作人或任何音訊處理人員更輕鬆地完成音調校正或音訊準備等任務。
請隨意嘗試此腳本,看看如何使其適應您的需求。快樂編碼!
以上是如何使用 Python 降低歌曲的音調的詳細內容。更多資訊請關注PHP中文網其他相關文章!