video streaming from IP camera
Posted: Fri Feb 20, 2015 8:59 pm
I have a wireless network camera that I am trying to connect to with the player object. I can access the camera via a web browser, but so far, not using the LC player. I've looked at this lesson:
http://lessons.runrev.com/m/4603/l/44283-using-players
and noticed at the bottom of the lesson it says that you can access a URL. Below is my code:
BTW, I recently learned that the new version of Java sometimes blocks access to video in a browser, so just in case, I have made a security exception for 192.168.1.56, so I don't think Java is blocking the process.
What else do I need to do to get the streaming video from the camera?
I appreciate any assistance.
http://lessons.runrev.com/m/4603/l/44283-using-players
and noticed at the bottom of the lesson it says that you can access a URL. Below is my code:
Code: Select all
on mouseUp
set the filename of player "player" to "http://192.168.1.56/video.cgi"
start player "player"
launch url "http://192.168.1.56/video.cgi" -- just testing the URL
end mouseUp
BTW, I recently learned that the new version of Java sometimes blocks access to video in a browser, so just in case, I have made a security exception for 192.168.1.56, so I don't think Java is blocking the process.
What else do I need to do to get the streaming video from the camera?
I appreciate any assistance.