cli.py 文件源码

python
阅读 24 收藏 0 点赞 0 评论 0

项目:pymp4 作者: beardypig 项目源码 文件源码
def dump():
    parser = argparse.ArgumentParser(description='Dump all the boxes from an MP4 file')
    parser.add_argument("input_file", type=argparse.FileType("rb"), metavar="FILE", help="Path to the MP4 file to open")

    args = parser.parse_args()

    fd = args.input_file
    fd.seek(0, io.SEEK_END)
    eof = fd.tell()
    fd.seek(0)

    while fd.tell() < eof:
        box = Box.parse_stream(fd)
        print(box)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号