mirror of
https://github.com/sipeed/MaixCDK.git
synced 2026-09-13 07:03:24 -05:00
67 lines
2.5 KiB
Python
67 lines
2.5 KiB
Python
|
|
def add_file_downloads(confs : dict) -> list:
|
|
'''
|
|
@param confs kconfig vars, dict type
|
|
@return list type, items is dict type
|
|
'''
|
|
version = f"{confs['CONFIG_FFMPEG_VERSION_MAJOR']}.{confs['CONFIG_FFMPEG_VERSION_MINOR']}.{confs['CONFIG_FFMPEG_VERSION_PATCH']}.{confs['CONFIG_FFMPEG_COMPILED_VERSION']}"
|
|
if confs.get('PLATFORM_MAIXCAM', None):
|
|
url = f"https://github.com/sipeed/MaixCDK/releases/download/v0.0.0/ffmpeg_libs_n{version}.tar.xz"
|
|
if version == "4.4.4.1":
|
|
sha256sum = "d4b8eb70a7864c855e8e286fef39b9b90faf72c1b77491148c451da252cad6c0"
|
|
elif version == "4.4.4.2":
|
|
sha256sum = "aa95faf66e92f9b244e5d48006ceee1a6e3cfb1122fe78f9fbe3a0cf6db7a7f2"
|
|
else:
|
|
raise Exception(f"version {version} not support")
|
|
sites = ["https://github.com/sipeed/MaixCDK/releases/tag/v0.0.0"]
|
|
filename = f"ffmpeg_libs_n{version}.tar.xz"
|
|
path = f"ffmpeg_srcs"
|
|
check_file = 'ffmpeg'
|
|
rename = {
|
|
f'ffmpeg_libs_n{version}': 'ffmpeg'
|
|
}
|
|
|
|
return [
|
|
{
|
|
'url': f'{url}',
|
|
'urls': [],
|
|
'sites': sites,
|
|
'sha256sum': sha256sum,
|
|
'filename': filename,
|
|
'path': path,
|
|
'check_files': [
|
|
check_file
|
|
],
|
|
'rename': rename
|
|
}
|
|
]
|
|
elif confs.get('PLATFORM_MAIXCAM2', None):
|
|
url = f"https://github.com/sipeed/MaixCDK/releases/download/v0.0.0/ffmpeg_maixcam2_libs_n{version}.tar.xz"
|
|
if version == "4.4.4.1":
|
|
sha256sum = "ab74cf4fe0a8b7a3462862decd65e39f668ff4ab0d1a78297d78efe96a729368"
|
|
elif version == "6.1.1.1":
|
|
sha256sum = "a768eef0ab5841d63cb99dc4ee66b0b252b56ecce0bb8d344eb68bb8d6e49735"
|
|
else:
|
|
raise Exception(f"version {version} not support, please add support in component.py of FFmpeg")
|
|
sites = ["https://github.com/sipeed/MaixCDK/releases/tag/v0.0.0"]
|
|
filename = f"ffmpeg_maixcam2_libs_n{version}.tar.xz"
|
|
path = f"ffmpeg_srcs"
|
|
check_file = f'ffmpeg_maixcam2_libs_n{version}'
|
|
rename = {}
|
|
|
|
return [
|
|
{
|
|
'url': f'{url}',
|
|
'urls': [],
|
|
'sites': sites,
|
|
'sha256sum': sha256sum,
|
|
'filename': filename,
|
|
'path': path,
|
|
'check_files': [
|
|
check_file
|
|
],
|
|
'rename': rename
|
|
}
|
|
]
|
|
|