Coder Social home page Coder Social logo

molihuan / bilibilicachevideomergepython Goto Github PK

View Code? Open in Web Editor NEW
110.0 110.0 16.0 242.67 MB

🔥🔥🔥将Bilibili缓存文件合并导出为MP4,支持B站手机客户端缓存,支持B站电脑客户端缓存 Merge and export Bilibili cache files into MP4, support caching on B-station mobile client and B-station computer client

Python 100.00%

bilibilicachevideomergepython's People

Contributors

abusideluoyin avatar molihuan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

bilibilicachevideomergepython's Issues

这个视频合并后打开不能播放

建议:适配HIDPI 自定义输出文件命名规则

类别:优化建议

设备信息:windows

描述:
1 本软件适配高DPI了吗?150%缩放打开后界面很小 如果可以的话请处理下
2 1页15个有点少,为啥要分页,滚动条不就得了,我打开我的缓存文件夹,软件说有10页,我倒。。。
3 希望能自定义输出文件名规则,支持比如 BV号、视频名、分P名、等等的变量替换,而且一个视频一个文件夹有点浪费了要不然也做成选项吧

关于每页显示数量

是否可以考虑设置每页的显示数量呢, 感觉目前显示的数量太少了, 会被分成很多页

遇到2个小问题

①有部分视频导出不了,卡在复制这一步了,TEMP文件夹里没有东西,说明是没有复制成功
②导出成功后TEMP文件夹里的临时文件没有自动清理,相当于我导出1次就会产生2个视频文件

请教一下代码中的一个小问题

   @staticmethod
    def decryptM4s(target_path: str, output_path: str, bufsize: int = 256 * 1024 * 1024) -> None:
        assert bufsize > 0
        with open(target_path, 'rb') as target_file:
            header = target_file.read(32)
            new_header = header.replace(b'000000000', b'')
            new_header = new_header.replace(b'$', b' ')
            new_header = new_header.replace(b'avc1', b'')
            with open(output_path, 'wb') as output_file:
                output_file.write(new_header)
                i = target_file.read(bufsize)
                while i:
                    output_file.write(i)
                    i = target_file.read(bufsize)

请问一下上述代码中的for循环中的output_file.write(i)语句不会导致前面被replace清洗掉的脏数据又被重新覆盖成脏数据么?

关于全选按钮

如果页面比较多,点击全选只会选中当前页面,而且切换页面会把之前选中的取消,能否加个跨页面全选的功能呢

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.