首页 > 代码库 > python脚本0b文件处理
python脚本0b文件处理
要处理的文件:
此处处理将00的数据干掉。
处理python脚本:
1 dir_fd = open(‘abc.yuv‘,‘rb+‘) 2 tmp_fd = open(‘tmp.yuv‘,‘wb+‘) 3 while True: 4 content = dir_fd.read(1) 5 6 # content.int(‘10‘,16) 7 if content==b‘\x00‘: 8 continue 9 if content==b‘‘:10 tmp_fd.write("/n")11 break12 print(content)13 tmp_fd.write(content)14 tmp_fd.flush()
1 dir_fd = open(‘abc.yuv‘,‘rb+‘) 2 tmp_fd = open(‘tmp.yuv‘,‘wb+‘) 3 while True: 4 content = dir_fd.read(1) 5 6 # content.int(‘10‘,16) 7 if content==b‘\x00‘: 8 continue 9 if content==b‘‘:10 tmp_fd.write("/n")11 break12 print(content)13 tmp_fd.write(content)14 tmp_fd.flush()
处理之后的效果:
python脚本0b文件处理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。