video-streaming

Streaming from IP camera using chromecast

 ̄綄美尐妖づ 提交于 2019-12-06 07:19:58
问题 I am trying to stream through IP camera through my android device. I have edited the URL from the code posted on GitHub It is streaming on chrome browser when I tried to run from IP address of camera. But when I try to cast it, It shows me player status:IDLE and blank screen on TV Other videos are playing but for streaming I am facing problem. Any help?? 来源: https://stackoverflow.com/questions/20489251/streaming-from-ip-camera-using-chromecast

How to synchronize multiple video streams in ActionScript?

怎甘沉沦 提交于 2019-12-06 06:35:19
问题 I'm trying to play multiple video streams simultaneously. However, I cannot synchronize these videos to play at the same rate. ---- details -------- I have three 45-second videos in FLV format and I use flash.net.NetStream to play these videos. I call netstream.play() of these netstream at the same time (by using a for-loop). However, these videos are out-of-sync even all videos files are on my local machine. For example, when the wall clock is at 10th second, the first video is at 7th second

Will Chromecast device play videos encoded as HLS? [closed]

不羁的心 提交于 2019-12-06 06:22:07
问题 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 4 years ago . It apparently works on Google TV (for Android apps, not html5 apps), so I'm curious if we'll be able to encode them as HLS (Http Live Streaming) for use with Chromecast? 回答1: It will now according to the updated SDK docs: https://developers.google.com/cast/docs/media I'm guessing for contentType on MediaInfo you

Samsung Smart TV streaming MPEG DASH with PlayRead

自作多情 提交于 2019-12-06 06:20:57
问题 I try to play stream (MPEG-DASH with PlayReady) on Orsay TV (Samsung TV before Tizen). Unencrypted DASH is working fine. I'm trying to acquire licence strictly according to DRM Today manual (that is my DRM provider), but the playback doesn't start, and after a while I get rendering error, or no stream at all. CustomData is generated due the DRM provider specification and it works on other platforms and devices. It's base64 hashed to customDataBase64 due to the DRM provider's manual. <object

WOWZA + RTMP to play on Multiple Devices?

徘徊边缘 提交于 2019-12-06 06:11:41
问题 I'm still a newbie to Wowza/Streaming but when i setup everything (RHEL + Wirecast), i can somehow stream-out/broadcast from my home pc to EC2 Server. As i followed according to Wowza Live-Streaming Tutorial, i used RTMP and after that all i got FOR PUBLIC (Viewer) side are: rtsp ://xx.xx.xx.xx:1935/live/myStream http ://xx.xx.xx.xx:1935/live/myStream/playlist. m3u8 That means, i can ONLY PLAY via Flash and iOS. But on Androids and Windows Phones , there is NO FLASH supported. Now my very

Ardrone Video Stream decoding in Android

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-06 05:55:53
I'm working on an image processing project for the Parrot AR.drone, using opencv4Android, i'm so new to the whole thing! , does anyone have an idea about how to read in video streams from the ARDrone using OpenCV, the samples shows how to get video input from a webcam only the video is encoded in H.264 format,and the drone adds a proprietary header (called PaVE) to every video frame, apparently that's why Android fails to load the video stream.. thanks You need a PaVE parser that will strip the PaVE headers off the H.264 frames before you can decode them and feed them to OpenCV. There are some

How to stream video in android device via .sdp file from android device

不羁的心 提交于 2019-12-06 05:36:51
问题 I had anapplication to stream video(without audio) from android device(Blaze board) to PC. For that, I'm using vlc player to view streamed video by using the following command in command line vlc stream.sdp This .sdp file would be generated from my application. By using the above command, I can stream from blaze board to PC with the delay of 1 sec. Now, My problem is that, I have to stream from one blaze board to another blaze board. I have searched a lot. But, Nothing is worked. I have an

How to generate multi rate mpeg-dash stream by ffmpeg

自作多情 提交于 2019-12-06 05:15:55
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? Parham Alvani 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 "scale=-2:480" -profile:v:1 main -use_timeline 1 \ -use_template 1 -window_size 5 -adaptation_sets

ffmpeg AVFrame to opencv Mat conversion

拟墨画扇 提交于 2019-12-06 05:07:52
问题 I am currently work on a project which decode the received frame using ffmepg, after decode, I want to convert the AVFrame to opencv Mat frame so that I can play it on the imShow function. What I have is the byte stream, I read it into buffer, decoded to AVFrame: f = fopen(filename, "rb"); if (!f) { fprintf(stderr, "Could not open %s\n", filename); exit(1); } frame = avcodec_alloc_frame(); if (!frame) { fprintf(stderr, "Could not allocate video frame\n"); exit(1); } framergb = avcodec_alloc

Online Video not Playing

梦想与她 提交于 2019-12-06 05:00:46
问题 I'm following a Tutorial to play Video in Android, Tutorial Here But when I run the Application on Emulator, it Gives me the following Error MediaPlayer error (1, -2147483648) Please Help Here's the Code of my Application JAVA package com.example.videoplayer; import android.media.MediaPlayer; import android.media.MediaPlayer.OnErrorListener; import android.media.MediaPlayer.OnPreparedListener; import android.net.Uri; import android.os.Bundle; import android.app.Activity; import android