ffmpeg-data-v6 1.0.0a2__tar.gz
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.
- ffmpeg_data_v6-1.0.0a2/PKG-INFO +13 -0
- ffmpeg_data_v6-1.0.0a2/pyproject.toml +33 -0
- ffmpeg_data_v6-1.0.0a2/setup.cfg +4 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6/__init__.py +14 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6/cache/list/av_option_sets.json +89957 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6/cache/list/codecs.json +26830 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6/cache/list/filters.json +89047 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6/cache/list/formats.json +18555 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6/cache/list/options.json +2306 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6.egg-info/PKG-INFO +13 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6.egg-info/SOURCES.txt +11 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6.egg-info/dependency_links.txt +1 -0
- ffmpeg_data_v6-1.0.0a2/src/ffmpeg_data_v6.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ffmpeg-data-v6
|
|
3
|
+
Version: 1.0.0a2
|
|
4
|
+
Summary: Cache data files for typed-ffmpeg-v6 (FFmpeg 6.x)
|
|
5
|
+
Author-email: lucemia <lucemia@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: ffmpeg,data
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Natural Language :: English
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Multimedia :: Video
|
|
13
|
+
Requires-Python: >=3.10
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "ffmpeg-data-v6"
|
|
3
|
+
version = "1.0.0a2"
|
|
4
|
+
description = "Cache data files for typed-ffmpeg-v6 (FFmpeg 6.x)"
|
|
5
|
+
authors = [
|
|
6
|
+
{name = "lucemia", email = "lucemia@gmail.com"}
|
|
7
|
+
]
|
|
8
|
+
requires-python = ">=3.10"
|
|
9
|
+
license = "MIT"
|
|
10
|
+
keywords = ["ffmpeg", "data"]
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"Natural Language :: English",
|
|
14
|
+
"Operating System :: OS Independent",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Topic :: Multimedia :: Video",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
dependencies = []
|
|
20
|
+
|
|
21
|
+
[build-system]
|
|
22
|
+
requires = ["setuptools>=61.0"]
|
|
23
|
+
build-backend = "setuptools.build_meta"
|
|
24
|
+
|
|
25
|
+
[tool.setuptools]
|
|
26
|
+
package-dir = {"" = "src"}
|
|
27
|
+
|
|
28
|
+
[tool.setuptools.packages.find]
|
|
29
|
+
where = ["src"]
|
|
30
|
+
include = ["ffmpeg_data_v6*"]
|
|
31
|
+
|
|
32
|
+
[tool.setuptools.package-data]
|
|
33
|
+
"ffmpeg_data_v6" = ["cache/list/*.json"]
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""Cache data files for typed-ffmpeg-v6 (FFmpeg 6.x)."""
|
|
2
|
+
|
|
3
|
+
from pathlib import Path
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def get_cache_path() -> Path:
|
|
7
|
+
"""
|
|
8
|
+
Return the path to the cache data directory.
|
|
9
|
+
|
|
10
|
+
Returns:
|
|
11
|
+
Path to the cache data directory.
|
|
12
|
+
|
|
13
|
+
"""
|
|
14
|
+
return Path(__file__).parent / "cache"
|