您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“Python怎么提取視頻中的音頻”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
需要用到 python 的 moviepy 庫
moviepy的 github 地址:https://github.com/Zulko/moviepy
命令行 pip 安裝上 moviepy 即可!
pip install moviepy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
提取音頻:假設(shè)有一個 mp4 文件路徑為"D:pythonpycharm2020my_programvideo_process est_01.mp4",我們想提取其中的音頻保存到"D:pythonpycharm2020my_programvideo_processvst01.mp3",三行 Python 代碼實現(xiàn)如下:
import moviepy.editor as mpy # 截取背景音樂 audio_background = mpy.AudioFileClip(r'D:pythonpycharm2020my_programvideo_process est_01.mp4').subclip(1, 60) audio_background.write_audiofile(r'D:pythonpycharm2020my_programvideo_processvst01.mp3')
執(zhí)行上面的三行代碼,就會發(fā)現(xiàn)音頻文件已經(jīng)成功提取到指定文件夾啦~ ~這里的視頻格式和音頻格式都支持其他格式,比如讀取 mp4 格式視頻,抽取其中的背景音樂保存為 MP3 格式音頻。
數(shù)據(jù)來源:
http://python123.io/dv/grawave.html
http://python123.io/dv/H1_Strain.wav
http://python123.io/dv/L1_Strain.wav
http://python123.io/dv/wf_template.txt
從配置文檔中讀取時間相關(guān)數(shù)據(jù)
import numpy as np # 科學(xué)計算所用的numpy庫
import matplotlib.pyplot as plt # 繪圖所用的庫matplotlib
from scipy.io import wavfile # 讀取波形文件所用的庫
rate_h, hstrain = wavfile.read(r"H1_Strain.wav", "rb") # 讀取音頻文件
rate_l, lstrain = wavfile.read(r"L1_Strain.wav", "rb")
# reftime, ref_H1 = np.genfromtxt('GW150914_4_NR_waveform_template.txt').transpose()
reftime, ref_H1 = np.genfromtxt('wf_template.txt').transpose() # 使用python123.io下載txt文件
構(gòu)造應(yīng)變數(shù)據(jù)
htime_interval = 1 / rate_h
ltime_interval = 1 / rate_l
fig = plt.figure(figsize=(12, 6)) # 創(chuàng)建大小為12*6的繪圖空間
# 丟失信號起始點
htime_len = hstrain.shape[0] / rate_h # 讀取數(shù)據(jù)第一維的長度,得到函數(shù)在坐標軸上總長度
htime = np.arange(-htime_len / 2, htime_len / 2, htime_interval) # (起點,終點,時間間隔)
使用來自 “H1” 探測器的數(shù)據(jù)作圖
plth = fig.add_subplot(221) # 設(shè)置繪圖區(qū)域
plth.plot(htime, hstrain, 'r') # 畫出以時間為x軸,應(yīng)變數(shù)據(jù)為y軸的圖像,‘y'為黃色
plth.set_xlabel('Time (seconds)')
plth.set_ylabel('H1 Strain')
plth.set_title('H1 Strain')
繪制 L1 Strain 和Template
ltime_len = lstrain.shape[0] / rate_l
ltime = np.arange(-ltime_len / 2, ltime_len / 2, ltime_interval)
pltl = fig.add_subplot(222)
pltl.plot(ltime, lstrain, 'k')
pltl.set_xlabel('Time (seconds)')
pltl.set_ylabel('L1 Strain')
pltl.set_title('L1 Strain')
pltref = fig.add_subplot(212)
pltref.plot(reftime, ref_H1, 'purple')
pltref.set_xlabel('Time (seconds)')
pltref.set_ylabel('Template Strain')
pltref.set_title('Template')
fig.tight_layout() # 自動調(diào)整圖像外部邊緣
保存并顯示圖像
plt.savefig("Gravitational_Waves_Original.png") # 保存圖像為png格式
plt.show()
plt.close(fig)
“Python怎么提取視頻中的音頻”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。