Code Monkey home page Code Monkey logo

Comments (3)

Heporis avatar Heporis commented on June 10, 2024

这个问题好像只出现在录flv流的直播,m3u8应该没这个问题
其实很好应对,可以转一下ts格式,会自动修复时间戳跳变,
我自己暂时是写在脚本里用的,类似这种:
ffmpeg -i input.flv -bsf:v h264_mp4toannexb -f mpegts -c copy -v quiet output.ts
一般用mp4格式,就再加一步 ffmpeg -i input.ts -c copy -v quiet output.mp4
也可以用管道连起来减少中间文件输出
ffmpeg -i input.flv -bsf:v h264_mp4toannexb -f mpegts -c copy -v quiet - | ffmpeg -i - -c copy -v quiet output.mp4
这个过程直接copy音视频流,不涉及转码,速度非常快,其实可以在biliup里内置@CoolZxp

from biliup.

jue221 avatar jue221 commented on June 10, 2024

好的 感谢
我先把config.toml配置内downloader参数我改为ffmpeg 下方视频保存格式写为mp4 看看今天的录制测试

from biliup.

Kataick avatar Kataick commented on June 10, 2024

这个报错是上传线程设置过多了 如果出现的频繁,请降低所设置的上传线程数
并且这个并不影响视频本身的问题

from biliup.

Related Issues (20)

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.