Last active
January 3, 2016 16:19
-
-
Save KonradIT/8488803 to your computer and use it in GitHub Desktop.
GPBrowser, a html file that displays all the files shot in a gopro via wifi, and it autorefresh every X seconds.
Replace X by the seconds the browser have to refresh the page.
Replace XXX by the number of the folder you want to browse
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<!GPBrowser, a html file that displays all the files shot in a gopro via wifi, and it autorefresh every X seconds.> | |
<head><!Replace X by the seconds the browser have to refresh the page.> | |
<meta http-equiv="refresh" content="X"> | |
</head> | |
<frameset ROWS="100%, *" frameborder="no" framespacing="0" border="0"> | |
<!Replace XXX by the number of the folder you want to browse> | |
<frame SRC="http://10.5.5.9:8080/videos/DCIM/XXXGOPRO" NAME="mainwindow" frameborder="no" framespacing="0" marginheight="0" marginwidth="0"> | |
</frameset> | |
<noframes> | |
<center><h2>Your browser does not support frames. We recommend upgrading your browser.</h2> | |
<br>Or, you are not connected to the GoPro Wifi Network | |
</center> | |
</noframes> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good ch