回答編集履歴
1
確認結果追加
test
CHANGED
@@ -7,3 +7,69 @@
|
|
7
7
|
`yum -y install ffmpeg ffmpeg-devel`
|
8
8
|
|
9
9
|
では実行プログラムやC/C++用ヘッダファイルがインストールされるだけでpython用モジュールはインストールされないと思います。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
---
|
14
|
+
|
15
|
+
CentOS7を一からインストールしてみてやってみましたがうまく動作しました。ちょっとお手上げかも
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
1. CentOS-7-x86_64-DVD-1908.isoを使用してVMware上にCentOS7を最小セットアップ
|
20
|
+
|
21
|
+
1. [ここ](https://corgi-lab.com/linux/centos7-install-gui/)を参考にGUI環境を使えるようにする。
|
22
|
+
|
23
|
+
1. Python3をインストール(`yum install python3`)
|
24
|
+
|
25
|
+
1. アップデート実施(`yum update`)
|
26
|
+
|
27
|
+
1. 質問欄のインストール手順を実施(環境変数PATHの設定などはしない)
|
28
|
+
|
29
|
+
1. 結果
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
[nomuken@localhost ~]$ ffmpeg -version
|
34
|
+
|
35
|
+
ffmpeg version 2.8.15 Copyright (c) 2000-2018 the FFmpeg developers
|
36
|
+
|
37
|
+
built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-36)
|
38
|
+
|
39
|
+
configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --optflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic' --extra-ldflags='-Wl,-z,relro ' --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3 --enable-bzlib --disable-crystalhd --enable-gnutls --enable-ladspa --enable-libass --enable-libcdio --enable-libdc1394 --enable-libfdk-aac --enable-nonfree --disable-indev=jack --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-openal --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libv4l2 --enable-libx264 --enable-libx265 --enable-libxvid --enable-x11grab --enable-avfilter --enable-avresample --enable-postproc --enable-pthreads --disable-static --enable-shared --enable-gpl --disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-runtime-cpudetect
|
40
|
+
|
41
|
+
libavutil 54. 31.100 / 54. 31.100
|
42
|
+
|
43
|
+
libavcodec 56. 60.100 / 56. 60.100
|
44
|
+
|
45
|
+
libavformat 56. 40.101 / 56. 40.101
|
46
|
+
|
47
|
+
libavdevice 56. 4.100 / 56. 4.100
|
48
|
+
|
49
|
+
libavfilter 5. 40.101 / 5. 40.101
|
50
|
+
|
51
|
+
libavresample 2. 1. 0 / 2. 1. 0
|
52
|
+
|
53
|
+
libswscale 3. 1.101 / 3. 1.101
|
54
|
+
|
55
|
+
libswresample 1. 2.101 / 1. 2.101
|
56
|
+
|
57
|
+
libpostproc 53. 3.100 / 53. 3.100
|
58
|
+
|
59
|
+
[nomuken@localhost ~]$ python3
|
60
|
+
|
61
|
+
Python 3.6.8 (default, Aug 7 2019, 17:28:10)
|
62
|
+
|
63
|
+
[GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux
|
64
|
+
|
65
|
+
Type "help", "copyright", "credits" or "license" for more information.
|
66
|
+
|
67
|
+
>>> import ffmpeg
|
68
|
+
|
69
|
+
>>> print(ffmpeg)
|
70
|
+
|
71
|
+
<module 'ffmpeg' from '/home/nomuken/.local/lib/python3.6/site-packages/ffmpeg/__init__.py'>
|
72
|
+
|
73
|
+
>>>
|
74
|
+
|
75
|
+
```
|