1 Star 0 Fork 23

newsky647/third_party_openh264

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
copy_to_wels_head.py 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
bird_j 提交于 2022-05-24 14:20 . 1
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2022 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
import argparse
import os
import shutil
def copy_file(src_dir, dst_dir):
if not os.path.exists(dst_dir):
os.makedirs(dst_dir)
headers = [
'codec_api.h',
'codec_app_def.h',
'codec_def.h',
'codec_ver.h',
]
for header in headers:
src_file = os.path.join(src_dir, header)
file_tags = header.split('/')
if (len(file_tags) == 1):
des_file = os.path.join(dst_dir, header)
else:
des_file = os.path.join(dst_dir, file_tags[len(file_tags) - 1])
shutil.copy2(src_file, des_file)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--src-dir', help='source path of wels header file', required=True)
parser.add_argument('--dst-dir', help='destion path of wels header file', required=True)
args = parser.parse_args()
print('copy from %s to %s', args.src_dir, args.dst_dir)
copy_file(args.src_dir, args.dst_dir)
return 0
if __name__ == '__main__':
sys.exit(main())
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/newsky647/third_party_openh264.git
git@gitee.com:newsky647/third_party_openh264.git
newsky647
third_party_openh264
third_party_openh264
master

搜索帮助