摘要: 添加随机扰动 爬山算法 避免陷入不动域 控制步长参数和时延阈值,通过递归函数,实现音视频的同步问题。 阅读全文
posted @ 2018-04-09 20:20 papering 阅读(666) 评论(0) 推荐(1) 编辑
摘要: 递归 启发式 避免步长和可容忍的时延的 固定摇摆 阅读全文
posted @ 2018-04-09 20:14 papering 阅读(275) 评论(0) 推荐(0) 编辑
摘要: import osmy_file = '23.txt'if os.path.exists(my_file): #删除文件,可使用以下两种方法。 os.remove(my_file) #os.unlink(my_file) 阅读全文
posted @ 2018-04-09 19:56 papering 阅读(170) 评论(0) 推荐(0) 编辑
摘要: linux curl 下载图片 curl -s -O https://images.shobserver.com/news/690_390/2017/11/5/a1675f4b-64da-4c7c-9432-218f89512aa4.jpg curl -s -O https://images.sho 阅读全文
posted @ 2018-04-09 19:42 papering 阅读(1671) 评论(0) 推荐(0) 编辑
摘要: def compute_video_playtime(f): # Create a VideoCapture object and read from input file # If the input is the camera, pass 0 instead of the video file name cap = cv2.VideoCapture(f) ... 阅读全文
posted @ 2018-04-09 18:41 papering 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 依照众数的长宽比、尺寸,定视频的长宽比、尺寸 阅读全文
posted @ 2018-04-09 16:40 papering 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 图片拉伸,改变长宽比 阅读全文
posted @ 2018-04-09 16:39 papering 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 原理是将字幕写到图片中,然后再写入视频的帧中 对图片适应 阅读全文
posted @ 2018-04-09 13:24 papering 阅读(424) 评论(0) 推荐(0) 编辑
摘要: import os os_sep = os.sep this_file_abspath = os.path.abspath(__file__) this_file_dirname, this_file_name = os.path.dirname(this_file_abspath), os.path.abspath(__file__).split(os_sep)[ -1] ... 阅读全文
posted @ 2018-04-09 11:56 papering 阅读(166) 评论(0) 推荐(0) 编辑