首页 > 其他分享 >angie vod_module 模块的问题

angie vod_module 模块的问题

时间:2023-11-02 20:15:21浏览次数:36  
标签:vod github module nginx angie com

上次我简单说过angie 官方构建的nginx-vod-module 有一些问题,经常测试实际上问题还是不小的

主要问题

  • 声音处理会有问题
  • 同时缩略图似乎也有问题

解决方法

应该自己构建nginx-vod-module ,同时编译为动态模块(包含debug 最好)

说明

实际上通过日志我们也看出了不少警告信息,十实际上这些警告信息还是比较严重的,构建的命令最好参考容器版本运行的参数
可以通过angie -V查看

参考资料

https://github.com/nytimes/nginx-vod-module-docker/blob/master/Dockerfile
https://github.com/kaltura/nginx-vod-module/blob/master/vod/filters/audio_encoder.c
https://github.com/kaltura/nginx-vod-module
https://angie.software/en/install/#install-docker
https://github.com/webserver-llc/angie
https://angie.software/en/howto/sourcebuild/#configure

标签:vod,github,module,nginx,angie,com
From: https://www.cnblogs.com/rongfengliang/p/17806171.html

相关文章

  • angie vod_module 试用
    因为angie已经内置了不少方便的模块(包含了vod模块),vod对于视频的处理是一个很常用的模块(m3u8播放)主要进行下测试环境准备基于docker-compose部署,核心是配置vod配置主要包含了核心配置以及特定协议支持配置angie为了与nginx不一样,使用了不同的名称angie.conf......
  • angie docker 镜像试用
    主要是试用下官方的docker镜像环境准备docker-composeversion:"3"services:angie:image:docker.angie.software/angie:1.3.1-rockyports:-"80:80"-"443:443"启动&效果启动do......
  • linux CentOS ModuleNotFoundError: No module named '_ctypes
    Yesthatworkedforme,ImadesurethesepackagesareinstalledonmyCentos7:sudoyuminstall-yzlib-develbzip2-developenssl-develncurses-develsqlite-develreadline-develtk-develgdbm-develdb4-devellibpcap-develxz-develexpat-devellibffi-dev......
  • Python:报错——ModuleNotFoundError: No module named 'encodings'
    运行Python报错:FatalPythonerror:Py_Initialize:unabletoloadthefilesystemcodecModuleNotFoundError:Nomodulenamed'encodings' 处理步骤:1.Files>>>Setting>>>Project>>>PythonInterpreter >>>AddInterpret......
  • module 'tensorflow.compat.v2' has no attribute '__internal__
    fromkeras.utilsimportto_categorical module'tensorflow.compat.v2'hasnoattribute'__internal__fromkeras.utilsimportto_categorical $pythontesterr.py UsingTensorFlowbackend.Traceback(mostrecentcalllast): File"testerr.......
  • 解决Python报错ImportError: No module named ‘xxxx‘问题
    BASE_DIR=os.path.dirname(os.getcwd())#用来从jupyter默认地址中脱离出来importsyssys.path.append(BASE_DIR)sys.path.append('E:\CV_Paper_fuxian\lesson\B_VGG')#把文件所在的相对路径要添加进去。才不会报错然后运行,就完美解决了。......
  • fetchMetadata: sill resolveWithNewModule [email protected] checking installable s
    在使用vue-element-admin,npm安装时一直卡在这里报错换源,跟换安装方式都不能解决。最后找到问题,这个是由于安装tui-editor时报错,解决的办法是删掉package.json的tui-editor配置项,之后再次安装大家可以查下tui-editor是干什么用的,不需要就直接删了,然后安装 ......
  • 2023-10-27 Module not found: Error: Can't resolve 'D:/xx/xx/src/pages/yyy/zzz' i
    问题描述:react+antd+umi业务中删掉了一个文件夹,重新编译报错。报错:在'D:\xx\xx\src\.umi\core'路径里面无法找到模块zzz。原因:是因为你只是把本地文件zzz给删了,但是在route.js里面还保留着它的路径,所以umi识别不到就报错了。解决方案:在route.js文件里找到zzz的路径,将之删掉再重......
  • 'main' attribute cannot be used in a module that contains top-level code 问题解
    核心是@main注解在main.swift文件中,可以重新命名下参考资料https://stackoverflow.com/questions/73431031/swift-cli-app-main-attribute-cannot-be-used-in-a-module-that-contains-top-leve......
  • git之复合指令和submodule
    1.别名设置在路径C:\Progfiles\Git\etc\profile.d\aliases.sh里面通过alias设置了一个复合指令 aliasgsync='date;gitpullmmaster;gitadd.;gitcommit-m"sync-desk";gitpushmmaster' 2.在git仓库中有submodule,但是不知从什么时候开始,在一台机器上gsync后,在另......