質問編集履歴
2
試したことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,6 +38,58 @@
|
|
38
38
|
|
39
39
|
|
40
40
|
|
41
|
+
### 試したこと
|
42
|
+
|
43
|
+
ffmpyというライブラリを試してみましたが、結果としてタグは取得できませんでした。
|
44
|
+
|
45
|
+
動画タグに「Dragon」、コメントに「DD」と入れて下記を実行したところ、取得できたのはコメントだけでした。
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
```python
|
50
|
+
|
51
|
+
import subprocess
|
52
|
+
|
53
|
+
import ffmpy
|
54
|
+
|
55
|
+
import json
|
56
|
+
|
57
|
+
from ffmpy import FFprobe
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
path = r"任意の動画パス"
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
tup_resp = ffmpy.FFprobe(
|
66
|
+
|
67
|
+
executable=r"***\bin\ffprobe.exe",
|
68
|
+
|
69
|
+
inputs={path: None},
|
70
|
+
|
71
|
+
global_options=[
|
72
|
+
|
73
|
+
'-v', 'quiet',
|
74
|
+
|
75
|
+
'-print_format', 'json',
|
76
|
+
|
77
|
+
'-show_format', '-show_streams']
|
78
|
+
|
79
|
+
).run(stdout=subprocess.PIPE)
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
meta = json.loads(tup_resp[0].decode('utf-8'))
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
print(meta)
|
88
|
+
|
89
|
+
>>>{'streams': [{'index': 0, 'codec_name': 'h264', 'codec_long_name': 'H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10', 'profile': 'High', 'codec_type': 'video', 'codec_tag_string': 'avc1', 'codec_tag': '0x31637661', 'width': 1280, 'height': 720, 'coded_width': 1280, 'coded_height': 720, 'closed_captions': 0, 'has_b_frames': 2, 'sample_aspect_ratio': '1:1', 'display_aspect_ratio': '16:9', 'pix_fmt': 'yuv420p', 'level': 31, 'chroma_location': 'left', 'refs': 1, 'is_avc': 'true', 'nal_length_size': '4', 'r_frame_rate': '25/1', 'avg_frame_rate': '25/1', 'time_base': '1/90000', 'start_pts': 0, 'start_time': '0.000000', 'duration_ts': 13327110, 'duration': '148.079000', 'bit_rate': '949626', 'bits_per_raw_sample': '8', 'nb_frames': '3702', 'disposition': {'default': 1, 'dub': 0, 'original': 0, 'comment': 0, 'lyrics': 0, 'karaoke': 0, 'forced': 0, 'hearing_impaired': 0, 'visual_impaired': 0, 'clean_effects': 0, 'attached_pic': 0, 'timed_thumbnails': 0}, 'tags': {'language': 'und', 'handler_name': 'VideoHandler', 'vendor_id': '[0][0][0][0]', 'encoder': 'dailymotion/hls.js'}}, {'index': 1, 'codec_name': 'aac', 'codec_long_name': 'AAC (Advanced Audio Coding)', 'profile': 'LC', 'codec_type': 'audio', 'codec_tag_string': 'mp4a', 'codec_tag': '0x6134706d', 'sample_fmt': 'fltp', 'sample_rate': '44100', 'channels': 2, 'channel_layout': 'stereo', 'bits_per_sample': 0, 'r_frame_rate': '0/0', 'avg_frame_rate': '0/0', 'time_base': '1/44100', 'start_pts': 0, 'start_time': '0.000000', 'duration_ts': 6529005, 'duration': '148.050000', 'bit_rate': '113059', 'nb_frames': '6376', 'disposition': {'default': 1, 'dub': 0, 'original': 0, 'comment': 0, 'lyrics': 0, 'karaoke': 0, 'forced': 0, 'hearing_impaired': 0, 'visual_impaired': 0, 'clean_effects': 0, 'attached_pic': 0, 'timed_thumbnails': 0}, 'tags': {'language': 'und', 'handler_name': 'SoundHandler', 'vendor_id': '[0][0][0][0]'}}], 'format': {'filename': '###任意の動画フルパス###', 'nb_streams': 2, 'nb_programs': 0, 'format_name': 'mov,mp4,m4a,3gp,3g2,mj2', 'format_long_name': 'QuickTime / MOV', 'start_time': '0.000000', 'duration': '148.080000', 'size': '19751188', 'bit_rate': '1067054', 'probe_score': 100, 'tags': {'major_brand': 'mp42', 'minor_version': '0', 'compatible_brands': 'isomiso2avc1mp41mp42', 'comment': 'DD'}}}
|
90
|
+
|
91
|
+
```
|
92
|
+
|
41
93
|
|
42
94
|
|
43
95
|
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
Pythonを用いて、**.mp4形式の動画タグを編集**したいのですが、方法がわかりません。
|
5
|
+
Pythonを用いて、**.mp4形式の動画タグ**(以下)を**編集**したいのですが、方法がわかりません。
|
6
6
|
|
7
7
|
|
8
8
|
|
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
|
15
|
+
![イメージ説明](ba95e201f0ba08e8eb777f59c713914d.png)
|
16
16
|
|
17
17
|
|
18
18
|
|
@@ -40,6 +40,10 @@
|
|
40
40
|
|
41
41
|
|
42
42
|
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
43
47
|
### 補足情報(FW/ツールのバージョンなど)
|
44
48
|
|
45
49
|
Windows10
|