码迷,mamicode.com
首页 > 编程语言 > 详细

python脚本0b文件处理

时间:2016-10-16 01:34:51      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:

要处理的文件:技术分享

此处处理将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         break
12     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         break
12     print(content)
13     tmp_fd.write(content)
14     tmp_fd.flush()

处理之后的效果:

技术分享

 

python脚本0b文件处理

标签:

原文地址:http://www.cnblogs.com/defen/p/5965706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!