video-streaming

Displaying live UDP or RTP stream (multicast) on Android

早过忘川 提交于 2019-12-21 02:40:33
问题 I am new to Android development since a few weeks, and I need to write an app that can display the user a live stream multicasted in UDP or RDP. The stream is located at an address such as "rtp://230.0.0.11:1234", and is emitted by WIFI thanks to this module : http://www.ikusi.es/public/ctrl_public_prod.php?accion=verProducto&id_familia=34&id_gama=186&id_producto=351 I already tried to read it from a player (Daroon player, from PlayStore), and it worked well, so I assume that my foolowing

using dynamic smil file with jw player

大兔子大兔子 提交于 2019-12-21 02:35:17
问题 I'm trying to make a online stream player with JW Player 6. If I create a smil file with all the quality version of streams and use the code below it works fine: <script> jwplayer("myElement").setup({ playlist: [{ sources: [{ file: "/player/smil.asp" }] }], type: 'rtmp' }); </script> smil file: <smil> <head> <meta base="rtmp://host/app" /> </head> <body> <switch> <video src="quality1" system-bitrate="720" /> <video src="quality2" system-bitrate="360" /> </switch> </body> </smil> I want to

How to disable video encoding In Kurento Media Server?

狂风中的少年 提交于 2019-12-21 01:39:10
问题 I am using Kurento media server for video streaming, I have h264 video source over RTSP. I am creating PlayerEndpoint using below code. pipeline.create('PlayerEndpoint', {uri: 'rtsp://hostaddress:8554/stream', useEncodedMedia: false}, function(error, _playerEndpoint) { But still it converts/encodes h264 into VP8, It needs more processing for encoding. So I am getting delay in video stream. I just want to stream h264 video directly without conversion/encoding into VP8. I think Firefox support

Android MediaRecorder setOutPutFile() to stream using Socket

回眸只為那壹抹淺笑 提交于 2019-12-20 23:22:45
问题 I am developing an Android app that should be capable of streaming video to a local server on my network without storing it on SD card. For this I have made simple socket application in C# that listens to the specific IP:PORT On Android part, I had set the setOutputFile() to this IP:PORT using socket. This application starts perfectly on Android phone but it does not display preview and when I start recording it exits without any exception. It also do not send any data stream to the network.

free video player for RTMP & support ads

陌路散爱 提交于 2019-12-20 20:34:12
问题 I want to stream and play my videos (RTMP) from my custom server. Can anybody let me know any flash player than can play rtmp stream? and I want this player supports video Ads :) I took a look on JWPLAYER and FlowPlayer but these are paid solutions Thank you in advance. 回答1: Open source and free player supports ads and rtmp is Video-JS . Player homepage: http://www.videojs.com Player plugins: https://github.com/videojs/video.js/wiki/Plugins Video-js vast plugins: http://theonion.github.io

Why VideoView in android is taking too much time to load and play the video from http link?

∥☆過路亽.° 提交于 2019-12-20 18:26:25
问题 Below is my Code : package com.example.videoplayer; import android.app.Activity; import android.app.ProgressDialog; import android.media.MediaPlayer; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.widget.MediaController; import android.widget.VideoView; public class VideoPlayerActivity extends Activity { String TAG = "com.example.VideoPlayer"; ProgressDialog progDailog; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate

Android webrtc not working with 3g, 4g

点点圈 提交于 2019-12-20 15:28:36
问题 In android application i have user webrtc for video calling app. If mobile is connected with wifi then app work perfectly. When i change wifi to mobile data and start app then app not work and also not display video . I have user webrtc in my app and server side kurento. Below list of scenario with status : Browser Client + Mobile Client -> Both on same Wifi network(KMS Server on same wifi network) -> Working fine . Mobile Client + Mobile Client -> Both on same Wifi network(KMS Server on same

FFMPEG to Youtube Live

心已入冬 提交于 2019-12-20 14:54:17
问题 I have an audio stream, im using ffmpeg to stream it to youtube live with an image as background with following command, ffmpeg -loop 1 -i x.jpg -i http://xxx.xxx.xxx.xxxx:5305/stream -c:a aac -s 1280x720 -ab 128k -strict experimental -f flv rtmp://a.rtmp.youtube.com/live2/xxxxx But im getting the following message on youtube, YouTube is not receiving enough video to maintain smooth streaming. As such, viewers will experience buffering this cause buffering in the output stream. Any one know

H.264 codec explained [closed]

旧时模样 提交于 2019-12-20 10:03:13
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I am making a app which supports video calls and I am looking for a tutorial/doc explaining the structure of the h.264 codec. I want to be able to package the stream, wrap it in datagrams, send and unpack on the receiving side. Any suggestions/reading materials? 回答1: What do you mean by structure? If you are

How to serve HLS streams from S3 in secure way (authorized & authenticated)

家住魔仙堡 提交于 2019-12-20 09:47:17
问题 Problem: I am storing number of HLS streams in S3 with given file structure: Video1 ├──hls3 ├──hlsv3-master.m3u8 ├──media-1 ├──media-2 ├──media-3 ├──media-4 ├──media-5 ├──hls4 ├──hlsv4-master.m3u8 ├──media-1 ├──media-2 ├──media-3 ├──media-4 ├──media-5 In my user API I know which exactly user has access to which video content but I also need to ensure that video links are not sharable and only accessible by users with right permissions. Solutions: 1) Use signed / temp S3 urls for private S3