下記のURLで勉強させていただこうと思っていますが
「!git clone」でエラーします。
https://github.com/yurikimura/AudioProcessing/blob/master/classifying.ipynb
python
1import os 2import librosa #for audio processing 3import matplotlib.pyplot as plt 4import numpy as np 5from scipy.io import wavfile #for audio processing 6from matplotlib import pyplot 7import warnings 8warnings.filterwarnings("ignore") 9 10# get clone for achieving dataset 11!git clone https://github.com/yurikimura/AudioProcessing.git 12 13# plotting a sound sample of "bird" (Time domain) 14train_audio_path = 'AudioProcessing/train/audio/' 15samples, sample_rate = librosa.load(train_audio_path+'bird/01bcfc0c_nohash_0.wav', sr=16000) # sample rate = sr 16fig = plt.figure(figsize=(14, 8)) 17ax1 = fig.add_subplot(111) 18ax1.set_title('Raw wave of ' + 'train/audio/bird/01bcfc0c_nohash_0.wav',color="white") 19ax1.set_xlabel('time',color="white") 20ax1.set_ylabel('Amplitude',color="white") 21ax1.plot(np.linspace(0, sample_rate/len(samples), sample_rate), samples)
!git clone https://github.com/yurikimura/AudioProcessing.git ^
SyntaxError: invalid syntax
本来ならば音声ファイルのロードが始まるのだと思うのですが、初歩的な知識が不足しているのか、うまくいきません。
音声ファイルが取得できる解決方法のご教授をお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/16 01:20