Need to host the webcam output to some web site - webcam

i have new webcam.
The software of the webcam can give out the webcam live moview to site.
I looking for some free good site that i can use for hosting my webcam live movie
Where can i find it ?
Thanks.

Sorry there is no FREE webservice that will let stream your webcam to their website. It will eat their bandwidth , wont they ?
However, try to get some FTP account and download a program called "Dorgem" on your computer and let it run , so it will keep streaming your webcam data to your FTP.
Update for Comment :
Why not just use yahoo messenger ? Create 2 accounts (for yourself and for your baby's) Place your cam before your baby's cradle and sign-on to yahoo messenger with your baby's account and open your cam and set "Anyone can view my cam" (in the preferences). So when you go to your office , log on to your account , just click "View cam" of your baby's account. Job Done :)

Related

How to dial-in conference in nexmo?

I am using this repo:
https://github.com/opentok/opentok-nexmo-sip/tree/master/Dial-In-Conference
Bought nexmo virtual number and created new tokbox app.Set up all credentials. Changed only voicename and text in server.js. For local testing purposes I am using tunnel through ngrok, so in nexmo dashboard I've put my actual ngrok url for endpoints with ending eg. /nexmo-answer and /nexmo-events.
When I start app and go to new room eg. room/2 I can see, my app is working, camera and microphone works perfectly also my coworker can go to my link through tunnel and we can talk.
The problem is that nobody can dial into our conference. Anyone calling can hear welcome message and pin prompt, after inputting correct pin, the phone apparently connects (doesn't disconnect automatically) but we can't hear or send any sound. Any advice?
I managed to solve my error. App needs to dial out into nexmo's virtual number's room.

Google Assistant custom open url command

I made a device on esp8266 microcontroler that is controlled by http. For egzample if i visit on any device in same WiFi site 192.168.4.1/on microcontroler will turn on motor if i visit 192.168.4.1/off microcontroler will turn off motor. I want to control that device by google asistant by saying "Ok google. Turn on motor". Is there any way to create your own google asistant comands that will open website (best in background but not necessary)? Maybe with IFTTT?

Webcam video recorder with resumable uploader

I am developing a website in which video recording is the core feature. We would ideally want video recording to continue even if internet connection goes down. If user is recording the video and internet gets disconnected then the video may get locally saved and when internet connection resumes, the video gets uploaded to the server.
I have gone through some websites which provides APIs for recording video via webcam but they do not work even if internet connection goes down for a moment.
Any suggestions will be highly appreciated.
I guess for your case you need to offer an off-line application rather online streaming solution, then later the user can upload the video. PresentationTube at http://presentationtube.com uses this technique. As they said: PresentationTube offers a PowerPoint presentation recorder and video sharing network to help teachers, students and business professionals produce and share presentations in video format.

how to upload .flv to remote red5 server LIVE in real time?

I want to do live webcast of some ceremonies. I can record .flv files using my webcam and ffmpeg software. Now, if I hire a red5 media server from some hosting company so that visitors can download from that website. Now my problem is how can I upload .flv files LIVE ( when video shooting is still in progress )
Please help how to achieve this
I assume by recording them you mean you are saving them to disk and are not streaming the video? If this is the case you simply need to use an upload form or have ftp / scp access to the hosted server. Pick one of the apps installed and place your flv files in the applications "streams" directory. Once the files are in-place you'll need a way to play them back, which will require a player (plenty of free ones out there like jwplayer). Hopefully this is what you were looking for.

Newbie question on Flash video players, products/SDKs, and API

I'm a C programmer and a total newbie to Flash/video/web world. Don't know where/how to start, and so would greatly appreciate your initial help.
Question
If I need to host flash videos off of my website (instead of embedding YouTube links on my webpages),
AND
If I need to provide player API like YouTube's that can be used, say, for supporting chromeless player versions customizable via this custom API of mine...
THEN
What do I need to do essentially...?
Write a custom Flash video player?
If yes, how? I mean, using which Adobe products / tools / SDKs / language(s)?
Is there anything free/opensource available for doing this? Especially, for Linux platform?
Write a new browser (firefox) plugin for users visiting my site?
Not sure how my custom Flash video player will get to the user visiting my site for the first time?
Any books, resources that cover this problem well?
Does the Flash content need to hosted off of a Windows server only?
Currently lost. Thanks in advance,
/SD
Flash has video playback support built-in, so all you need to do is use the Flash authoring environment or Flex to compile a .SWF file that uses the video API, with some buttons to stop and start the stream, volume, seeking, anything else you want your player to do.
Many people have already done this for you, in a way you can easily use from simple HTML. See eg. OSFLV, Flowplayer, JW...
Write a new browser (firefox) plugin for users visiting my site? Does the Flash content need to hosted off of a Windows server only?
Lord no! Flash video would never have taken off if it was just another custom-server+custom-plugin piece of unpleasantness. Though special streaming servers are possible, for the most part it's just an FLV file sitting on a web server.
(FLV is the video format supported by the Flash video playing functions. There are many, many tools you can use to convert other formats to it; I use Avidemux.)
If you are planning to use a "Progressive Download" approach, then your FLV files can be hosted on a Windows or a Linux box. Be aware that:
it is no as efficient as true
streaming.
you may not use it for live events
nor only for stored video files.
it cannot automatically detect the
end user's connection speed.
it is not possible to jump ahead to
another part while it's downloaded.
the video file will be saved on the
end user's computer.
If you are planning to use a "Streaming" approach then you can either buy and use Adobe's solution (Flash Media Server, available on both Windows and Linux box) or sign up for a hosted solution. On this page you will find recommended providers by Adobe. I personally have been using Influxis's hosting with success for a couple of years already.
You can also write your own streaming server but that would be a lot of hard work. If you are interested in that, I would recommend you have a look a Red5 which is an open source Flash Server written in Java.