live-streaming

Live stream peer to peer

↘锁芯ラ 提交于 2020-01-06 04:55:06
问题 I want to stream camera video of one android device to another device. This is what i am thinking, let say we have two devices Device-A, Device-B. Device-B stream its camera-video to a file stored in Device-A and Device-A play that video. See picture for more explanation. So my Question is, is this practically possible ? How we manage that file in which we are streaming data this file will be updated continuously and will be played at the same time. So how we going to achieve that that. 来源:

Stream video from phone camera using ionic framework

浪子不回头ぞ 提交于 2020-01-01 19:42:14
问题 I am trying to build a mobile phone app using Ionic Framework to live stream video captured through phone camera. This is very similar to https://www.periscope.tv/ I will capture this stream on my server, transcode and then distribute it again. I looked into the camera plugin for cordova https://github.com/apache/cordova-plugin-camera. I am not sure if it is possible to live stream from camera using ionic framework. If not, what are my other options except for going native. 回答1: Hi you can

How play the video using “HTTP Live Streaming” in iphone?

旧时模样 提交于 2020-01-01 05:20:08
问题 I am new to iphone development,I am parsing a XML URL and display its content in the table, when i click a row , its corresponding parsed tube URL is played using the movie player.I am using media player framework.Here is my code NSURL *movieURL = [NSURL URLWithString:requiredTubeUrl]; if (movieURL) { if ([movieURL scheme]) { MoviePlayerController *myMovie = [[MoviePlayerController alloc]init]; [myMovie initAndPlayMovie:movieURL]; } } This is working fine, but i want to play the video using

FFmpeg: NetStream.Play.StreamNotFound on RMTP stream

亡梦爱人 提交于 2020-01-01 04:39:05
问题 I want to take snapshots periodically of a RTMP live video stream. I can see the rtmp video stream using VLC. This is the rtmp url: rtmp://antena3fms35livefs.fplive.net/antena3fms35live-live/stream-antena3_1 I'm using the following command to capture the snapshots, according to the official FFmpeg site here: ffmpeg -i rtmp://antena3fms35livefs.fplive.net/antena3fms35live-live/stream-antena3_1 -f image2 -vf fps=fps=1 out%d.png The command produces the following output: ffmpeg version N-64667

Creating RTP Packets from Android Camera to Send

早过忘川 提交于 2019-12-28 03:34:25
问题 I'm new to Android and socket programming. I want to create an android application that transfer video live from device camera to PC. What first i do is to get a raw video data from PreviewCallback arguments and convert it to an RTP Packet. I was just using JLibRTP to do this. Regarding to transfer the packet i think, there are some related class: RtpPkt, RtpSession, and RtpSocket. Here is my glance code: DatagramSocket rtpSocket = new DatagramSocket(); DatagramSocket rtcpSocket = new new

Live-stream video from one android phone to another over WiFi

半城伤御伤魂 提交于 2019-12-28 01:39:24
问题 I have searched the internet for days now on how to implement a video streaming feature from an android phone to another android phone over a WiFi connection but I can't seem to find anything useful. I looked on android developers for sample code, stackoverflow, google, android blogs but nothing. All I can find are some sort of phone-to-desktop or desktop-to-phone solutions for streaming, but nothing that I can borrow in my implementation. I need to control a robot using an arduino ADK, so I

Can i play m3u8 format in windows mobile?

笑着哭i 提交于 2019-12-25 06:24:03
问题 Sorry for the question, i don't have windows mobile to test. I am trying to develop a live internet radio application. The format they stream is in m3u8, i have got SDKs for all other mobile platorms but not for windows phone. Is there any SDK available for playing internet radio or will the m3u8 format of media supports in default. Please suggest me. Thanks in advance. 回答1: By default - no. However, you could use the HTTP Live Streaming SDK. 回答2: You can try Windows Phone Streaming Media

GoPro 3 streaming links missing in live directory

邮差的信 提交于 2019-12-25 06:10:32
问题 So by following different instructions online, I connected laptop to GoPro 3 silver using wifi. I browsed to the URL http://10.5.5.9:8080/live/ and this is where I am supposed to see options where I could copy the URL for media streaming. But this image shows that live folder is coming up empty. I am expecting to find something like : http://10.5.5.9:8080/live/amba.m3u8 Note- The GoPro is in "GOPRO APP" mode Thoughts? 回答1: Seems like there is some issue with gopro. Once I connected the GoPro3

GoPro 3 streaming links missing in live directory

醉酒当歌 提交于 2019-12-25 06:10:29
问题 So by following different instructions online, I connected laptop to GoPro 3 silver using wifi. I browsed to the URL http://10.5.5.9:8080/live/ and this is where I am supposed to see options where I could copy the URL for media streaming. But this image shows that live folder is coming up empty. I am expecting to find something like : http://10.5.5.9:8080/live/amba.m3u8 Note- The GoPro is in "GOPRO APP" mode Thoughts? 回答1: Seems like there is some issue with gopro. Once I connected the GoPro3

How to packet encoded AAC data to flv file with ffmpeg API?

限于喜欢 提交于 2019-12-24 14:28:44
问题 I have captured the Audio data from Android Microphone and encoded them by MediaCodec. My question is: How to packet encoded AAC data to flv with ffmpeg ? 回答1: If you only want to packet audio into flv : ffmpeg -i input.aac -c copy out.flv If you have a video track to go with : ffmpeg -i input.mp4 -i input.aac -c copy out.flv 来源: https://stackoverflow.com/questions/31160039/how-to-packet-encoded-aac-data-to-flv-file-with-ffmpeg-api