解決したい事柄
pythonのライブラリであるpydubを使ってmp3ファイルを読み込みたいです。
エラーが発生したコード
python
1from pydub import AudioSegment 2 3# mp3ファイルの読み込み 4sound = AudioSegment.from_mp3("test\input.mp3")
エラー内容
C:\Users\hinat\Desktop\kivy2>python cut2.py
C:\Users\hinat\AppData\Local\Programs\Python\Python39\lib\site-packages\pydub\utils.py:170: RuntimeWarning: Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work
warn("Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work", RuntimeWarning)
C:\Users\hinat\AppData\Local\Programs\Python\Python39\lib\site-packages\pydub\utils.py:198: RuntimeWarning: Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work
warn("Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work", RuntimeWarning)
Traceback (most recent call last):
File "C:\Users\hinat\Desktop\kivy2\cut2.py", line 4, in <module>
sound = AudioSegment.from_mp3("test\input.mp3")
File "C:\Users\hinat\AppData\Local\Programs\Python\Python39\lib\site-packages\pydub\audio_segment.py", line 796, in from_mp3
return cls.from_file(file, 'mp3', parameters=parameters)
File "C:\Users\hinat\AppData\Local\Programs\Python\Python39\lib\site-packages\pydub\audio_segment.py", line 728, in from_file
info = mediainfo_json(orig_file, read_ahead_limit=read_ahead_limit)
File "C:\Users\hinat\AppData\Local\Programs\Python\Python39\lib\site-packages\pydub\utils.py", line 274, in mediainfo_json
res = Popen(command, stdin=stdin_parameter, stdout=PIPE, stderr=PIPE)
File "C:\Users\hinat\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in init
self._execute_child(args, executable, preexec_fn, close_fds,
File "C:\Users\hinat\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] 指定されたファイルが見つかりません。
試してみたこと
・ファイル名をpath有りで与えてみた
・pygameで似たようなことをやってみたが、そっちは動いた
・pydubを再インストール→アップグレード
動いた方のコード
python
1import pygame 2 3# mixerモジュールの初期化 4pygame.mixer.init() 5# 音楽ファイルの読み込み 6pygame.mixer.music.load("test\input.mp3")
開発環境
python3.9.2
windows10
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/14 15:06