video-streaming

Split, encode and join video parts in C#

帅比萌擦擦* 提交于 2019-12-08 03:06:38
问题 It is possible to split file into many parts.Is it possible every part encode and after that join them again? The idea is to encode one video on more computers. In .NET Thank you 回答1: You can call ffmpeg.exe from your c# code to accomplish this. There are also some libraries that are available to accomplish this. 回答2: Take a look at DirectShow .NET - it has some functionality for video capture and editing, although you still need to be familiar with general processing algorithms and methods.

Cannot play embedded videos on facebook wall unless SSL is disabled

纵饮孤独 提交于 2019-12-08 02:41:28
问题 I am trying to embed (non-You Tube) videos on a Facebook wall so that when the user clicks on them, the video plays on the wall. What's happening is: if the user is not logged in or has SSL disabled, it works. However, if they access the page securely with an "https:" scheme or if they are logged in with SSL enabled, when they click on the video, a new tab is launched with the address of the page where the video resides. I have researched this problem. The two solutions I have are, updating

IP camera RTSP address

廉价感情. 提交于 2019-12-08 02:01:26
问题 I have IP camera and I don't know it's full correct url address to RTSP stream. There is port only in RTSP settings but 192.168.1.132:554 is not enough as I understood. VLC says that rtsp stream is not found. How can I figure out correct url address? 回答1: How can I figure out correct url address? Ask hardware vendor for documentation on this (the best solution) As most cameras have a built-in web server and web client software to interact with the camera. Chances are that web client itself

Android AudioFlinger server died | media server died

假如想象 提交于 2019-12-08 01:56:48
问题 I am trying to develop a hls player on android devices, and i have some test-streams i can play with. A problem i have is that the HLS stream just "stops", freezes at some random locations, it could be after 1 minute, or after 20. The error i get is: 11-20 14:14:10.484: W/AudioSystem(18531): AudioFlinger server died! 11-20 14:14:10.484: W/IMediaDeathNotifier(18531): media server died and 11-20 14:14:10.484: E/MediaPlayer(18531): Error (100,0) I've got basically no idea on how to prevent or

How to generate multi rate mpeg-dash stream by ffmpeg

帅比萌擦擦* 提交于 2019-12-08 01:38:39
问题 I want to create dash stream with multi-bitrate and serve it. I also want to use the quality selector of dash.js player. like the picture: what flags and configuration I need for generating .mpd file? 回答1: With the following command, you create two streams and after that, you can put them into adoption sets instead of seperate streams: ffmpeg -i $INPUT.mp4 -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 \ -b:v:0 250k -filter:v:0 "scale=-2:240" -profile:v:0 baseline -b:v:1 \ 750k -filter:v:1

HTML5 Video - Suspend Loading / Partial Load

馋奶兔 提交于 2019-12-08 01:38:38
问题 Is there a way to preload a portion of a video, but not the entire thing? I noticed that there is a "suspend" event that indicates the video is expectedly not downloading until further instruction, but I'm unsure of how to trigger this event? My goal is to preload a portion of a video without taking up all the users' bandwidth. Thanks! 回答1: You can pre-fetch any URL with XHR, but you can't control how much it pre-fetch from the client-side. I think you can try this: set a header in the XHR

capturing video from ip camera

独自空忆成欢 提交于 2019-12-08 01:10:31
问题 I am trying to capture video from ip camera into my application , its giving exception com.sun.image.codec.jpeg.ImageFormatException: Not a JPEG file: starts with 0x0d 0x0a at sun.awt.image.codec.JPEGImageDecoderImpl.readJPEGStream(Native Method) at sun.awt.image.codec.JPEGImageDecoderImpl.decodeAsBufferedImage(Unknown Source) at test.AxisCamera1.readJPG(AxisCamera1.java:130) at test.AxisCamera1.readMJPGStream(AxisCamera1.java:121) at test.AxisCamera1.readStream(AxisCamera1.java:100) at test

Google Tag Manager & Youtube Conflict

房东的猫 提交于 2019-12-07 23:33:28
EDIT: the problem is no longer relevant. GTM do not affect Youtube API anymore. (In the jsFiddle demo, video informations (state, currentTime, duration) are always correct). Calling the Google Tag Manager seems to wreck the Youtube API. Here is a fiddle demo : Google Tag Manager & Youtube (jsfiddle) // where thoses methods do not work anymore player.getPlayerState(); player.getCurrentTime(); player.getDuration(); by commenting the line 16 Youtube API works again (correct state, correct currentTime / duration displayed). Since the video is still playing, it seems like the js api is disabled.

.NET Options Stream Video Files as WebCam Image

寵の児 提交于 2019-12-07 18:52:01
问题 I am interested in developing an application that will allow me to build a list of videos from xml (containing video title, duration, etc) and play that list as my webcam stream. Meaning, if I were to visit ustream.tv, or activate my webcam on live messenger my video playlist would register as my active webcam. Does anybody have experience in this area, and perhaps have some advice to offer? 回答1: I don't have a lot of experience in this area, but I would start by looking at the MSDN docs for

Video Streaming Over Websockets

五迷三道 提交于 2019-12-07 16:54:16
问题 I am trying to build mobile app which can stream video from both sides(i.e something like video calling). I looked into webrtc, but thats not yet ready for mobile native apps as such and anyways what webrtc was doing was allowing browser to capture camera and audio directly without requiring plugins etc. But in native mobile apps capturing camera and audio isn't a issue and basically a very low latency and dual transport layer is needed. In many articles and places I read about using webrtc