Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: docker内ffprobe段错误 #864

Open
4 of 7 tasks
leon0625 opened this issue Jan 23, 2025 · 2 comments
Open
4 of 7 tasks

[Bug]: docker内ffprobe段错误 #864

leon0625 opened this issue Jan 23, 2025 · 2 comments
Labels
enhancement New feature or request

Comments

@leon0625
Copy link

Don't skip these steps | 不要跳过这些步骤

  • I understand that I will be blocked if I intentionally remove or skip any mandatory* field | 我明白,如果我“故意”删除或跳过任何强制性的*字段,我将被限制
  • I am sure that this is a running error exception problem and will not submit any problems unrelated to this project | 我确定这是运行报错异常问题,不会提交任何与本项目无关的问题
  • I have searched and double-checked that there are no similar issues that have been created | 我已经通过搜索并仔细检查过没有存在已经创建的类似问题

Occurrence environment | 触发环境

  • Workflow | 工作流
  • GUI | 软件
  • Docker
  • Command line | 命令行

Bug description | 具体描述

docker内的ffprobe获取一些url的分辨率时存在段错误。

ffprobe -v error -select_streams v:0 -show_entries stream=width,height -of json http://z.b.bkpcp.top/m.php?id=cctv1
{
Segmentation fault (core dumped)

在容器内使用apt install ffmpeg重新安装ffmpeg,则没有段错误,获取分辨率正常

ffprobe -v error -select_streams v:0 -show_entries stream=width,height -of json http://z.b.bkpcp.top/m.php?id=cctv1
{
    "programs": [
        {
            "streams": [
                {
                    "width": 1920,
                    "height": 1080
                }
            ]
        }
    ],
    "streams": [
        {
            "width": 1920,
            "height": 1080
        }
    ]
}

Error log | 报错日志

No response

@leon0625 leon0625 added the bug Something isn't working label Jan 23, 2025
@go626201
Copy link

#859 我昨晚发过一个issue,确实存在这个问题。当前的docker版本 针对有域名的ffprobe结果 都不正常。

@Guovin
Copy link
Owner

Guovin commented Jan 23, 2025

这是ffmpeg的问题,有可能是由于构建的版本较低导致,我可以尝试升级。
@go626201 关于你另一个issue说的情况,由于你关闭了issue,是否需要额外安装别的依赖还有待验证,应该是部分url会出现该情况,并不是所有都会。

@Guovin Guovin added enhancement New feature or request and removed bug Something isn't working labels Jan 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants