auto-editor 26.0.0__py3-none-any.whl → 26.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- auto_editor/__init__.py +1 -1
- auto_editor/__main__.py +11 -43
- auto_editor/analyze.py +62 -49
- auto_editor/edit.py +15 -33
- auto_editor/ffwrapper.py +0 -49
- auto_editor/formats/fcp7.py +1 -1
- auto_editor/help.py +14 -16
- auto_editor/lang/palet.py +3 -9
- auto_editor/lang/stdenv.py +0 -7
- auto_editor/make_layers.py +3 -1
- auto_editor/output.py +4 -1
- auto_editor/render/audio.py +92 -42
- auto_editor/render/subtitle.py +7 -5
- auto_editor/render/video.py +1 -2
- auto_editor/subcommands/info.py +2 -0
- auto_editor/subcommands/levels.py +14 -3
- auto_editor/subcommands/test.py +1 -1
- auto_editor/timeline.py +2 -2
- auto_editor/utils/cmdkw.py +5 -8
- auto_editor/utils/container.py +2 -5
- auto_editor/utils/func.py +1 -34
- auto_editor/utils/log.py +6 -0
- auto_editor/utils/types.py +3 -17
- {auto_editor-26.0.0.dist-info → auto_editor-26.1.0.dist-info}/METADATA +3 -4
- auto_editor-26.1.0.dist-info/RECORD +55 -0
- {auto_editor-26.0.0.dist-info → auto_editor-26.1.0.dist-info}/WHEEL +1 -1
- auto_editor/utils/encoder.py +0 -135
- auto_editor-26.0.0.dist-info/RECORD +0 -56
- {auto_editor-26.0.0.dist-info → auto_editor-26.1.0.dist-info}/LICENSE +0 -0
- {auto_editor-26.0.0.dist-info → auto_editor-26.1.0.dist-info}/entry_points.txt +0 -0
- {auto_editor-26.0.0.dist-info → auto_editor-26.1.0.dist-info}/top_level.txt +0 -0
auto_editor/utils/encoder.py
DELETED
@@ -1,135 +0,0 @@
|
|
1
|
-
encoders = {
|
2
|
-
"libx264": (
|
3
|
-
"yuv420p",
|
4
|
-
"yuvj420p",
|
5
|
-
"yuv422p",
|
6
|
-
"yuvj422p",
|
7
|
-
"yuv444p",
|
8
|
-
"yuvj444p",
|
9
|
-
"nv12",
|
10
|
-
"nv16",
|
11
|
-
"nv21",
|
12
|
-
"yuv420p10le",
|
13
|
-
"yuv422p10le",
|
14
|
-
"yuv444p10le",
|
15
|
-
"nv20le",
|
16
|
-
"gray",
|
17
|
-
"gray10le",
|
18
|
-
),
|
19
|
-
"libx264rgb": ("bgr0", "bgr24", "rgb24"),
|
20
|
-
"h264_videotoolbox": ("videotoolbox_vld", "nv12", "yuv420p"),
|
21
|
-
"h264": ("videotoolbox_vld", "nv12", "yuv420p"),
|
22
|
-
"libx265": (
|
23
|
-
"yuv420p",
|
24
|
-
"yuvj420p",
|
25
|
-
"yuv422p",
|
26
|
-
"yuvj422p",
|
27
|
-
"yuv444p",
|
28
|
-
"yuvj444p",
|
29
|
-
"gbrp",
|
30
|
-
"yuv420p10le",
|
31
|
-
"yuv422p10le",
|
32
|
-
"yuv444p10le",
|
33
|
-
"gbrp10le",
|
34
|
-
"yuv420p12le",
|
35
|
-
"yuv422p12le",
|
36
|
-
"yuv444p12le",
|
37
|
-
"gbrp12le",
|
38
|
-
"gray",
|
39
|
-
"gray10le",
|
40
|
-
"gray12le",
|
41
|
-
),
|
42
|
-
"hevc_videotoolbox": ("videotoolbox_vld", "nv12", "yuv420p", "bgra", "p010le"),
|
43
|
-
"hevc": (
|
44
|
-
"yuv420p",
|
45
|
-
"yuvj420p",
|
46
|
-
"yuv422p",
|
47
|
-
"yuvj422p",
|
48
|
-
"yuv444p",
|
49
|
-
"yuvj444p",
|
50
|
-
"gbrp",
|
51
|
-
"yuv420p10le",
|
52
|
-
"yuv422p10le",
|
53
|
-
"yuv444p10le",
|
54
|
-
"gbrp10le",
|
55
|
-
"yuv420p12le",
|
56
|
-
"yuv422p12le",
|
57
|
-
"yuv444p12le",
|
58
|
-
"gbrp12le",
|
59
|
-
"gray",
|
60
|
-
"gray10le",
|
61
|
-
"gray12le",
|
62
|
-
),
|
63
|
-
"hevc_nvenc": (
|
64
|
-
"yuv420p",
|
65
|
-
"nv12",
|
66
|
-
"p010le",
|
67
|
-
"yuv444p",
|
68
|
-
"p016le",
|
69
|
-
"yuv444p16le",
|
70
|
-
"bgr0",
|
71
|
-
"rgb0",
|
72
|
-
"gbrp",
|
73
|
-
"gbrp16le",
|
74
|
-
"cuda",
|
75
|
-
"d3d11",
|
76
|
-
),
|
77
|
-
"hevc_amf": ("yuv420p", "nv12", "d3d11", "dxva2_vld"),
|
78
|
-
"h264_nvenc": (
|
79
|
-
"yuv420p",
|
80
|
-
"nv12",
|
81
|
-
"p010le",
|
82
|
-
"yuv444p",
|
83
|
-
"p016le",
|
84
|
-
"yuv444p16le",
|
85
|
-
"bgr0",
|
86
|
-
"rgb0",
|
87
|
-
"gbrp",
|
88
|
-
"gbrp16le",
|
89
|
-
"cuda",
|
90
|
-
"d3d11",
|
91
|
-
),
|
92
|
-
"h264_amf": ("yuv420p", "nv12", "d3d11", "dxva2_vld"),
|
93
|
-
"hevc_qsv": ("nv12", "p010le", "yuyv422", "y210le", "qsv", "bgra", "x2rgb10le"),
|
94
|
-
"h264_qsv": ("nv12", "p010le", "qsv"),
|
95
|
-
"vp9": (
|
96
|
-
"yuv420p",
|
97
|
-
"yuva420p",
|
98
|
-
"yuv422p",
|
99
|
-
"yuv440p",
|
100
|
-
"yuv444p",
|
101
|
-
"yuv420p10le",
|
102
|
-
"yuv422p10le",
|
103
|
-
"yuv440p10le",
|
104
|
-
"yuv444p10le",
|
105
|
-
"yuv420p12le",
|
106
|
-
"yuv422p12le",
|
107
|
-
"yuv440p12le",
|
108
|
-
"yuv444p12le",
|
109
|
-
"gbrp",
|
110
|
-
"gbrp10le",
|
111
|
-
"gbrp12le",
|
112
|
-
),
|
113
|
-
"vp8": ("yuv420p", "yuva420p"),
|
114
|
-
"prores": ("yuv422p10le", "yuv444p10le", "yuva444p10le"),
|
115
|
-
"av1": (
|
116
|
-
"yuv420p",
|
117
|
-
"yuv422p",
|
118
|
-
"yuv444p",
|
119
|
-
"gbrp",
|
120
|
-
"yuv420p10le",
|
121
|
-
"yuv422p10le",
|
122
|
-
"yuv444p10le",
|
123
|
-
"yuv420p12le",
|
124
|
-
"yuv422p12le",
|
125
|
-
"yuv444p12le",
|
126
|
-
"gbrp10le",
|
127
|
-
"gbrp12le",
|
128
|
-
"gray",
|
129
|
-
"gray10le",
|
130
|
-
"gray12le",
|
131
|
-
),
|
132
|
-
"mpeg4": ("yuv420p"),
|
133
|
-
"mpeg2video": ("yuv420p", "yuv422p"),
|
134
|
-
"mjpeg": ("yuvj420p", "yuvj422p", "yuvj444p"),
|
135
|
-
}
|
@@ -1,56 +0,0 @@
|
|
1
|
-
auto_editor/__init__.py,sha256=WK8aO_sVSNz80fWXrArodylgnY_BkbEjGQlGWEzflks,23
|
2
|
-
auto_editor/__main__.py,sha256=ktxF22s9uR8U0rtB8TV-2Kj0hwjzyb2k7e1A1_yAJwQ,12006
|
3
|
-
auto_editor/analyze.py,sha256=uCi21659BB-lbPwZ6yxNLekS6Q3yoB2ypLNXPhmhTfg,11688
|
4
|
-
auto_editor/edit.py,sha256=DwkFnWs__F9RNz_7E_fgT93sJywAerhx75Xz4aw3Nls,16728
|
5
|
-
auto_editor/ffwrapper.py,sha256=XB-N0ex8zkIcItnr9kilC6SSf0TjUI7og-U5Q8H3BJ0,6059
|
6
|
-
auto_editor/help.py,sha256=62s3L0rlhA7nkkOjtXItRUl779EJ__A7_6E-VFH3J_E,7924
|
7
|
-
auto_editor/make_layers.py,sha256=8uFy5SvMArAP-5slYJrxa_iGAEwimQBFeM-T01VORVw,8995
|
8
|
-
auto_editor/output.py,sha256=9YBBEASsXpxuBQJeGTQ5Ed8a0Fr8660DjJ85LeSrPe8,2502
|
9
|
-
auto_editor/preview.py,sha256=HUsjmV9Fx73rZ26BXrpz9z-z_e4oiui3u9e7qbbGoBY,3037
|
10
|
-
auto_editor/timeline.py,sha256=tIty8O8jD6TR2Sw2bivUtYtdnpplfuOXT7Dfc-gekr8,8174
|
11
|
-
auto_editor/vanparse.py,sha256=f0vViZ-aYtDxEyVrFHJ5X2pPTQAfqtw3N2gZgzn51kU,10002
|
12
|
-
auto_editor/wavfile.py,sha256=1HbZ4L8IBD6Fbg3pd5MQG4ZXy48YZA05t8XllSplhWk,9499
|
13
|
-
auto_editor/formats/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
-
auto_editor/formats/fcp11.py,sha256=qzo-qpHYsiHjOPjGBWjBeJUAACDmo8ijJkjslHTQH6Q,5196
|
15
|
-
auto_editor/formats/fcp7.py,sha256=vd7cW8vwoTvFlp4Tc5DYSn-A7i9ck3jJJdKNqWVtFVQ,20285
|
16
|
-
auto_editor/formats/json.py,sha256=Br-xHVHj59C0OPP2FwfJeht_fImepRXsaw0iDFvK7-w,7693
|
17
|
-
auto_editor/formats/shotcut.py,sha256=-ES854LLFCMCBe100JRJedDmuk8zPev17aQMTrzPv-g,4923
|
18
|
-
auto_editor/formats/utils.py,sha256=LYXDiqOk9WwUorLGw2D0M7In9BNDkoKikNawuks7hqE,1648
|
19
|
-
auto_editor/lang/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
-
auto_editor/lang/json.py,sha256=OsNcYlfEj8ZLlzLK-gkLcrCCKI7mJz9rpe-6XLr4f9U,9231
|
21
|
-
auto_editor/lang/libintrospection.py,sha256=6H1rGp0wqaCud5IPaoEmzULGnYt6ec7_0h32ATcw2oY,261
|
22
|
-
auto_editor/lang/libmath.py,sha256=z33A161Oe6vYYK7R6pgYjdZZe63dQkN38Qf36TL3prg,847
|
23
|
-
auto_editor/lang/palet.py,sha256=5S6RVNH8SHa3K7mf9GjWlLsnswmdp7xomkOR4LHV3Dg,24330
|
24
|
-
auto_editor/lang/stdenv.py,sha256=2pd1br3ijuIayXHKOitU6DOm-5yBxQFA1aCJgq_XWfU,43972
|
25
|
-
auto_editor/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
auto_editor/lib/contracts.py,sha256=lExGQymcQUmwG5lC1lO4qm4GY8W0q_yzK_miTaAoPA4,7586
|
27
|
-
auto_editor/lib/data_structs.py,sha256=dcsXgsLLzbmFDUZucoirzewPALsKzoxz7z5L22_QJM8,7091
|
28
|
-
auto_editor/lib/err.py,sha256=UlszQJdzMZwkbT8x3sY4GkCV_5x9yrd6uVVUzvA8iiI,35
|
29
|
-
auto_editor/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
auto_editor/render/audio.py,sha256=OWkpKtB9cdcJztTTOPe6ONgWAnvuotKD1A_28gfart4,10675
|
31
|
-
auto_editor/render/subtitle.py,sha256=TTUGO77L_iGm9Qkjq5LGERjECA2xriSV9G1fN_SQiqM,6200
|
32
|
-
auto_editor/render/video.py,sha256=l1qgnS1ArAOdq_db8vIHcvtZiMCX1jF20lqYhZHMxik,12264
|
33
|
-
auto_editor/subcommands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
|
-
auto_editor/subcommands/desc.py,sha256=GDrKJYiHMaeTrplZAceXl1JwoqD78XsV2_5lc0Xd7po,869
|
35
|
-
auto_editor/subcommands/info.py,sha256=t5n43HLt9hpMFSIfGV777X4zIPBAFugOKlpCfRjiKxY,6921
|
36
|
-
auto_editor/subcommands/levels.py,sha256=ChJMDTd34-jgxewqHRmmd3VNhFdy964w0DcQG0ls-hY,4079
|
37
|
-
auto_editor/subcommands/palet.py,sha256=ONzTqemaQq9YEfIOsDRNnwzfqnEMUMSXIQrETxyroRU,749
|
38
|
-
auto_editor/subcommands/repl.py,sha256=TF_I7zsFY7-KdgidrqjafTz7o_eluVbLvgTcOBG-UWQ,3449
|
39
|
-
auto_editor/subcommands/subdump.py,sha256=af_XBf7kaevqHn1A71z8C-7x8pS5WKD9FE_ugkCw6rk,665
|
40
|
-
auto_editor/subcommands/test.py,sha256=rM6ihsmYyW745lpFVeGwWbRHLTEymLhm1pRpmm7LdAo,25776
|
41
|
-
auto_editor/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
|
-
auto_editor/utils/bar.py,sha256=hG_NiYeuM90TdILzAJORft-UOS5grwWN3SbRuj6upsI,3998
|
43
|
-
auto_editor/utils/chunks.py,sha256=J-eGKtEz68gFtRrj1kOSgH4Tj_Yz6prNQ7Xr-d9NQJw,52
|
44
|
-
auto_editor/utils/cmdkw.py,sha256=uW_qDGQ6UzLPRbB20HTLrCmhMlWVXSfgyQMr4MyGErU,5734
|
45
|
-
auto_editor/utils/container.py,sha256=ajIiMRu5ZoBxRkGgR4UZORMgsD6fwl1pT2C3aoI5FcM,2785
|
46
|
-
auto_editor/utils/encoder.py,sha256=auNYo7HXbcU4iTUCc0LE5lpwFmSvdWvBm6-5KIaRK8w,2983
|
47
|
-
auto_editor/utils/func.py,sha256=hASpY8zr41cBIByKY8zZUZGVqDz7B0snwV1RYODbKD8,3741
|
48
|
-
auto_editor/utils/log.py,sha256=M2QKeQHMRNLm3HMVUKedZPRprT2u5dipOStiO4miPBk,3613
|
49
|
-
auto_editor/utils/types.py,sha256=FWa3SnOATMa_MSTjpdasl80b4WKTRIMLS0IlyYyMGxo,11043
|
50
|
-
docs/build.py,sha256=CM-ZWgQk8wSNjivx_-6wGIaG7cstrNKsX2d4TzFVivE,1642
|
51
|
-
auto_editor-26.0.0.dist-info/LICENSE,sha256=yiq99pWITHfqS0pbZMp7cy2dnbreTuvBwudsU-njvIM,1210
|
52
|
-
auto_editor-26.0.0.dist-info/METADATA,sha256=kHlPRQm-pu3oeW7_h3Ag1DIQYL_AwRvFkKx38yznj4k,6148
|
53
|
-
auto_editor-26.0.0.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
54
|
-
auto_editor-26.0.0.dist-info/entry_points.txt,sha256=-H7zdTw4MqnAcwrN5xTNkGIhzZtJMxS9r6lTMeR9-aA,240
|
55
|
-
auto_editor-26.0.0.dist-info/top_level.txt,sha256=jBV5zlbWRbKOa-xaWPvTD45QL7lGExx2BDzv-Ji4dTw,17
|
56
|
-
auto_editor-26.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|