質問編集履歴
4
試したことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -47,6 +47,8 @@
|
|
47
47
|
```
|
48
48
|
|
49
49
|
# 試したこと
|
50
|
+
https://github.com/openai/whisper/discussions/514
|
51
|
+
を参考に試行錯誤。
|
50
52
|
・ffmpegのuninstall とffmpeg-pythonのinstall → 変わらずエラー(module 'ffmpeg' has no attribute 'Error')が出たままでした
|
51
53
|
・ffmpegのuninstallとffmpeg-pythonのuninstallした後にpip3 install ffmpeg-python
|
52
54
|
→ エラー(FileNotFoundError)となる
|
3
試したことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -47,5 +47,8 @@
|
|
47
47
|
```
|
48
48
|
|
49
49
|
# 試したこと
|
50
|
+
・ffmpegのuninstall とffmpeg-pythonのinstall → 変わらずエラー(module 'ffmpeg' has no attribute 'Error')が出たままでした
|
50
|
-
ffmpegのuninstall
|
51
|
+
・ffmpegのuninstallとffmpeg-pythonのuninstallした後にpip3 install ffmpeg-python
|
52
|
+
→ エラー(FileNotFoundError)となる
|
51
53
|
|
54
|
+
|
2
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,3 +46,6 @@
|
|
46
46
|
print(result.text)
|
47
47
|
```
|
48
48
|
|
49
|
+
# 試したこと
|
50
|
+
ffmpegのuninstall とffmpeg-pythonのinstall → 変わらずエラーが出たまあmでした
|
51
|
+
|
1
誤字の訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,9 +6,7 @@
|
|
6
6
|
ffmpeg -version
|
7
7
|
```
|
8
8
|
とするとエラーなくバージョンは表示されます。
|
9
|
-
お忙しい中とは思いますが、回答いただけると嬉しいです。
|
9
|
+
お忙しい中とは思いますが、回答いただけると嬉しいです。
|
10
|
-
|:--|:--:|--:|
|
11
|
-
||||
|
12
10
|
|
13
11
|
### 実現したいこと
|
14
12
|
whisperで文字起こしをすること。
|
@@ -29,7 +27,7 @@
|
|
29
27
|
```python
|
30
28
|
import whisper
|
31
29
|
|
32
|
-
|
30
|
+
model=whisper.load_model("base")
|
33
31
|
audio = whisper.load_audio("sample.wav")
|
34
32
|
audio = whisper.pad_or_trim(audio)
|
35
33
|
|