現在、librosaのQickStartに乗っているコードをそのまま実行していて、問題なくコンソールに表示されるのですが、一つ分からないことがあります。
Qickstartのコードは下記の通りです。
# Beat tracking example from __future__ import print_function import librosa # 1. Get the file path to the included audio example filename = librosa.util.example_audio_file() # 2. Load the audio as a waveform `y` # Store the sampling rate as `sr` y, sr = librosa.load(filename) # 3. Run the default beat tracker tempo, beat_frames = librosa.beat.beat_track(y=y, sr=sr) print('Estimated tempo: {:.2f} beats per minute'.format(tempo)) # 4. Convert the frame indices of beat events into timestamps beat_times = librosa.frames_to_time(beat_frames, sr=sr)
分からないのは6行目
# 1. Get the file path to the included audio example filename = librosa.util.example_audio_file()
音楽ファイルを指定したいのですが、
どのディレクトリに音楽ファイルを追加したらよいのでしょうか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/22 12:26