ffmpeg.zip

时间:2022-09-03 02:40:26
【文件属性】:
文件名称:ffmpeg.zip
文件大小:66.32MB
文件格式:ZIP
更新时间:2022-09-03 02:40:26
监控视频流转码 1 安装FFMPEG(将 rtsp 地址转码为 rtmp地址) 配置环境变量: path 添加D:\ffmpeg\bin ffmpeg -i "rtsp://admin:123456@192.168.1.1:554/Streaming/Channels/1?transportmode=unicast" -f flv -r 25 -s 640x360 -an rtmp://localhost:1935/live/room 得到 rtmp://localhost::1935/live/room 2 集成VUE,安装 npm install vue-video-player -S npm install vue-video-player -S 注意不要用CNPM进行安装 [removed] import 'video.js/dist/video-js.css' import {videoPlayer} from 'vue-video-player' import 'videojs-flash' export default { components: { videoPlayer, }, data() { return { playerOptions: { height: '300', sources: [{ type: "rtmp/mp4", src: "rtmp://192.168.1.12:1935/live/room", //局域网的摄像头 }], techOrder: ['flash'], language: "zh-CN", live: true, autoplay: true } } } } [removed] 需要注意的地方: 1 vue有关于播放的组件需要用NPM安装,不能用cnpm,可以先用CNPM进行全局安装然后用NPM覆盖 2 安装完了以后播放的时候对goggle浏览器等,请选择允许 运行flash
【文件预览】:
ffmpeg
----README.txt(4KB)
----bin()
--------ffmpeg.exe(64.1MB)
--------ffplay.exe(63.99MB)
--------ffprobe.exe(64.01MB)
----presets()
--------libvpx-360p.ffpreset(219B)
--------libvpx-720p.ffpreset(227B)
--------libvpx-1080p.ffpreset(227B)
--------libvpx-1080p50_60.ffpreset(227B)
--------ffprobe.xsd(20KB)
--------libvpx-720p50_60.ffpreset(227B)
----doc()
--------libswresample.html(4KB)
--------ffmpeg-formats.html(172KB)
--------libavformat.html(3KB)
--------nut.html(10KB)
--------ffmpeg-scaler.html(8KB)
--------ffmpeg-bitstream-filters.html(34KB)
--------libavfilter.html(3KB)
--------ffplay-all.html(1.29MB)
--------git-howto.html(20KB)
--------bootstrap.min.css(107KB)
--------general.html(101KB)
--------ffprobe.html(45KB)
--------ffmpeg-all.html(1.65MB)
--------mailing-list-faq.html(25KB)
--------ffmpeg-filters.html(945KB)
--------ffplay.html(33KB)
--------style.min.css(6KB)
--------ffmpeg-devices.html(92KB)
--------libavcodec.html(3KB)
--------default.css(2KB)
--------libswscale.html(3KB)
--------libavutil.html(3KB)
--------ffmpeg-protocols.html(75KB)
--------faq.html(52KB)
--------developer.html(42KB)
--------ffmpeg.html(120KB)
--------platform.html(18KB)
--------ffprobe-all.html(1.3MB)
--------libavdevice.html(3KB)
--------ffmpeg-resampler.html(13KB)
--------fate.html(13KB)
--------ffmpeg-utils.html(43KB)
--------ffmpeg-codecs.html(211KB)
----LICENSE.txt(35KB)

网友评论