Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
i've been searching on this for some days now. I've found how to connect devices with the multipeer connectivity protocol (http://techmaster.vn/2013/09/multipeer-connectivity-quick-tutorial/) and i've manage to send text or images. What i want to do is to stream video and audio from the camera of the one device (master) to the other device(slave) in real time and show it on the slave's screen. I've found ways to save the video from the camera to the device in a file but there is nothing about streaming. Any ideas? I would really appreciate it. Thanks in advance
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 months ago.
Improve this question
I am using a third party plugin to integrate Vimeo into my application. But I want to stream a live event from Vimeo into my player which has been built on Flutter. I have no clue as to how to go about this route. I could use a little help. Thanks!
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
My goal is to have a local notification vibrate the phone without sound.
I have been googling around and am leaning towards using a sound file that is a blank (nothing to hear) sound. But I am curious if there is a better way?
As far as I can tell vibrate and sound come hand in hand so your sugeestion of the blank sound file is probably the most effective to get the result you need.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want Making an application that works with FireBase.The application will be like this .
User profiles will be.
You can add friends.
You can uploads max 20 seconds videos.
How can i do this ?
Thanks for your interest.
I would recommend taking a look at these links
https://firebase.google.com/docs/database/
https://firebase.google.com/docs/storage/
Firebase has very good tutorials in getting you started with their database.
Good luck :)
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 10 years ago.
Improve this question
I found this post that suggests to use AirServer to capture video from iPhone. Unfortunately AirServer doesn't support iPods (even though I have a 4th gen iPod running iOS 5.0). Is there a way via software or should I get my iPod to connect to a TV and record it there? I have seen that there are some good cables to connect iPod to TV but I lost the link and now can find only suggestion that explains how to do it on jailbroken iPods.. (which I don't want to do).
EDIT (For the one that closed the topic): is there any code snippet that I can use to send the video data from my app to AirServer?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Hi I am testing my application for various types of internet connections with my device. I want my application send an internet request only if WI-FI is available and not in other cases like GPS ,WAP, 3G, etc....
Please also provide some information about how to check the current speed of that particular connection.
Thanks in advance
Use Apple's Reachability class to check for Wifi or WAN. Use this example and code: http://developer.apple.com/library/ios/#samplecode/Reachability/index.html
Checking the speed is more difficult, you would need to measure it by your own I think, maybe the best way is to ping and measure the response latency.