live-video

Dynamically Inject ID3 in FFMPEG Live Stream

荒凉一梦 提交于 2021-01-29 10:15:39
问题 I am trying to find out if there is a way with FFMPEG to dynamically inject ID3 tags during live streaming. Basically I use FFMPEG to stream a live HLS stream from a video device, while another piece of software is generating events that need to be synced up in the front-end player. I want to be able to have the event generating software encode the event in the live stream, so I know that the event is synced up with the video. 来源: https://stackoverflow.com/questions/54862783/dynamically

How to Play M3U8 Format Android & iOS on Flutter

眉间皱痕 提交于 2020-12-05 10:21:30
问题 I can't find any solution for M3U8 Url player on iOS I tried these plugins; video_player (Can't play) flutter_simple_video_player (Only support Android) 回答1: chewie lib will be used for playing m3u8 files Add Dependency dependencies: chewie: ^0.9.10 Code Snippet: import 'package:flutter/material.dart'; import 'package:chewie/chewie.dart'; import 'package:video_player/video_player.dart'; void main() { runApp(MaterialApp(home: MyApp())); } class MyApp extends StatefulWidget { @override

Convert rtsp video stream to http stream

∥☆過路亽.° 提交于 2019-12-20 09:06:21
问题 I have the rtsp URL for a live video stream which I would like to access as an HTTP stream. Can someone please tell me if there are any components out there which I can put on my server to do this? I do not have any idea how I can implement this. Would appreciate a heads up. Thanks. 回答1: I would say that your best bet is to use either FFmpeg or VLC. Both are open source software and are widely used among hobbyists and also as a part of multiple different services. Also both can take in RTSP

How do I stream Live Video

自古美人都是妖i 提交于 2019-12-06 09:27:49
问题 I'm looking for solutions that will allow me to have a Live Video feed setup at one location and, via the internet, watch the video stream at a remote location. The goal is to have a live high quality video training session that remote users can watch from their own locations. Any technology will work. High Quality is a must. I'm most familiar with C# and Microsoft solutions. Here is how I understand it might work: For Provider Get Camera (I currently have a high definition video camera) Plug

Convert rtsp video stream to http stream

寵の児 提交于 2019-12-02 17:42:50
I have the rtsp URL for a live video stream which I would like to access as an HTTP stream. Can someone please tell me if there are any components out there which I can put on my server to do this? I do not have any idea how I can implement this. Would appreciate a heads up. Thanks. I would say that your best bet is to use either FFmpeg or VLC. Both are open source software and are widely used among hobbyists and also as a part of multiple different services. Also both can take in RTSP streams and create an HTTP stream (with live transcoding if needed). FFmpeg's RTSP support has improved as of