Up http://[RasPi の IPアドレス]/motion/ でアクセス 作成: 2021-02-28
更新: 2021-02-28


    Apache のドキュメントルート / に対し,ディレクトリ
      /motion
    に,Motion 画像を表示する index.phtml をつくる:
<?php $dir = "./storage/"; $url = "http://192.168.1.150:8081"; print " <html> <head> <title>Remote Camera</title> </head> <body> <center> <img src=\"".$url."\" /> <br><br><br> video files stored <br> <table border=1 cellspacing=0 cellpadding=20><tr><td> <font size=\"-1\"> "; if( $dh = opendir( $dir ) ) { while ( ( $file = readdir( $dh ) ) !== false ) { if( strcmp($file, "..") * strcmp($file, ".") != 0 ){ print $file."<br>"; } } closedir( $dh ); } print " </font> </td></tr></table> <a href=\"./index.phtml\">Update</a> <br><br><br> </center> </body> </html> "; ?>