質問編集履歴
11
123
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
INUX
|
1
|
+
INUX インストール後のpyファイル利用
|
test
CHANGED
File without changes
|
10
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,9 +2,27 @@
|
|
2
2
|
|
3
3
|
123.pyというファイルに以下コードを記載すると正常に動きました!
|
4
4
|
|
5
|
-
しかし別のdjangoのviews.pyの中でimportするとエラーになります。ちなみにwindowsだとimportでエラーにはならず正常にimport ffmpegが動きます。
|
5
|
+
しかし別のdjangoのviews.pyの中でimportするとエラーになります。ちなみにdjangoのviews.pyはwindowsだとimportでエラーにはならず正常にimport ffmpegが動きます。
|
6
|
+
|
7
|
+
|
8
|
+
|
6
|
-
|
9
|
+
つまり
|
10
|
+
|
7
|
-
|
11
|
+
linux上でffmpegは123.pyで動くにも関わらず
|
12
|
+
|
13
|
+
linux上でffmpegはview.pyでは動かずエラーになる。
|
14
|
+
|
15
|
+
import ffmpegの箇所でno module
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
もちろん同じlinux環境で同じフォルダ内にあるpyファイルです。
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
123.py
|
8
26
|
|
9
27
|
|
10
28
|
|
9
123
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,11 @@
|
|
2
2
|
|
3
3
|
123.pyというファイルに以下コードを記載すると正常に動きました!
|
4
4
|
|
5
|
-
しかし別のdjangoのviews.pyの中でimportするとエラーになります。
|
5
|
+
しかし別のdjangoのviews.pyの中でimportするとエラーになります。ちなみにwindowsだとimportでエラーにはならず正常にimport ffmpegが動きます。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
|
6
10
|
|
7
11
|
```ここに言語を入力
|
8
12
|
|
8
9
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,3 +1,33 @@
|
|
1
|
+
#追記2
|
2
|
+
|
3
|
+
123.pyというファイルに以下コードを記載すると正常に動きました!
|
4
|
+
|
5
|
+
しかし別のdjangoのviews.pyの中でimportするとエラーになります。
|
6
|
+
|
7
|
+
```ここに言語を入力
|
8
|
+
|
9
|
+
# -*- coding: utf-8 -*-
|
10
|
+
|
11
|
+
import ffmpeg
|
12
|
+
|
13
|
+
# 入力
|
14
|
+
|
15
|
+
stream = ffmpeg.input('input.MOV')
|
16
|
+
|
17
|
+
# 出力
|
18
|
+
|
19
|
+
stream = ffmpeg.output(stream, 'output.mov',t=2,ss=2)
|
20
|
+
|
21
|
+
# 実行
|
22
|
+
|
23
|
+
ffmpeg.run(stream)
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
|
30
|
+
|
1
31
|
#追記
|
2
32
|
|
3
33
|
環境変数を追加しましたが以下と同様エラーです。
|
7
え
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
INUX 環境変数パスの通し方 ffmpeg インストール後のpyファイル利用
|
test
CHANGED
@@ -1,4 +1,14 @@
|
|
1
|
+
#追記
|
2
|
+
|
3
|
+
環境変数を追加しましたが以下と同様エラーです。
|
4
|
+
|
5
|
+
export PATH=$PATH:/usr/include/ffmpeg
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
1
|
-
|
11
|
+
お世話になります。ffmpegをlinuxで.pyファイルから実行させたいです。
|
2
12
|
|
3
13
|
|
4
14
|
|
6
1あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -147,3 +147,15 @@
|
|
147
147
|
参考url
|
148
148
|
|
149
149
|
https://www.tecmint.com/install-ffmpeg-in-linux/
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
補足
|
154
|
+
|
155
|
+
pip3 install ffmpeg-pythonは実装済です。
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
Requirement already satisfied: ffmpeg-python in /home/django/.local/lib/python3.6/site-packages (0.2.0)
|
160
|
+
|
161
|
+
Requirement already satisfied: future in /home/django/.local/lib/python3.6/site-packages (from ffmpeg-python) (0.17.1)
|
5
5
test
CHANGED
File without changes
|
test
CHANGED
@@ -76,6 +76,8 @@
|
|
76
76
|
|
77
77
|
# エラー(ブラウザ上)
|
78
78
|
|
79
|
+
pyファイル上でimport ffmpegと書くと以下エラーが出ます。
|
80
|
+
|
79
81
|
|
80
82
|
|
81
83
|
```ここに言語を入力
|
4
4
test
CHANGED
File without changes
|
test
CHANGED
@@ -139,3 +139,9 @@
|
|
139
139
|
ffmpegインストールは正常終了しているのですが環境変数設定がうまくいかない状況です。
|
140
140
|
|
141
141
|
宜しくお願いいたします。
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
参考url
|
146
|
+
|
147
|
+
https://www.tecmint.com/install-ffmpeg-in-linux/
|
3
10
test
CHANGED
File without changes
|
test
CHANGED
@@ -37,6 +37,32 @@
|
|
37
37
|
|
38
38
|
|
39
39
|
ffmpeg -version
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
ffmpeg version 2.8.15 Copyright (c) 2000-2018 the FFmpeg developers
|
44
|
+
|
45
|
+
built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-36)
|
46
|
+
|
47
|
+
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
|
48
|
+
|
49
|
+
libavutil 54. 31.100 / 54. 31.100
|
50
|
+
|
51
|
+
libavcodec 56. 60.100 / 56. 60.100
|
52
|
+
|
53
|
+
libavformat 56. 40.101 / 56. 40.101
|
54
|
+
|
55
|
+
libavdevice 56. 4.100 / 56. 4.100
|
56
|
+
|
57
|
+
libavfilter 5. 40.101 / 5. 40.101
|
58
|
+
|
59
|
+
libavresample 2. 1. 0 / 2. 1. 0
|
60
|
+
|
61
|
+
libswscale 3. 1.101 / 3. 1.101
|
62
|
+
|
63
|
+
libswresample 1. 2.101 / 1. 2.101
|
64
|
+
|
65
|
+
libpostproc 53. 3.100 / 53. 3.100
|
40
66
|
|
41
67
|
```
|
42
68
|
|
2
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -47,6 +47,20 @@
|
|
47
47
|
しかしlinux上の環境変数の設定方法がわかりません
|
48
48
|
|
49
49
|
|
50
|
+
|
51
|
+
# エラー(ブラウザ上)
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
```ここに言語を入力
|
56
|
+
|
57
|
+
ModuleNotFoundError at /
|
58
|
+
|
59
|
+
No module named 'ffmpeg'
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
```
|
50
64
|
|
51
65
|
### 環境変数設定
|
52
66
|
|
1
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
お世話になります。ffmpegをlinuxで.pyファイルから実行させたいです。
|
1
|
+
初めて投稿させて頂きます。お世話になります。ffmpegをlinuxで.pyファイルから実行させたいです。
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -96,4 +96,6 @@
|
|
96
96
|
|
97
97
|
|
98
98
|
|
99
|
+
ffmpegインストールは正常終了しているのですが環境変数設定がうまくいかない状況です。
|
100
|
+
|
99
101
|
宜しくお願いいたします。
|