コントロール不可、固定
機種 Panasonic KH-HCM130
http://203.139.218.225/ViewerFrame?Mode=Motion&Language=1

第1,279回で紹介の江口蓬莱館 URLが変わりました。
鹿児島県日置市東市来町伊作田7425-5
フルコントロールOK
機種 Canon VB-C60
http://153.142.40.130/viewer/live/ja/live.html
河口湖 山梨県南都留郡富士河口湖町
フルコントロールOK
機種 Canon VB-C60
ん~ 見たことあるような気がしますが??
コントロール不可、固定
機種 Panasonic KH-HCM130
http://203.139.218.225/ViewerFrame?Mode=Motion&Language=1
第1,343回で紹介した小松市役所にもう一台ありました。
石川県小松市小馬出町91番地
プリセットボタンのみコントロールOK
機種 Canon VB-M40
http://www.camera4.citykomatsu.jp/viewer/live/ja/live.html
第430回で紹介した宮崎県小林市
フルコントロールOK
機種 Canon VB-C60
http://camera1.city.kobayashi.lg.jp/viewer/live/ja/live.html
http://camera3.city.kobayashi.lg.jp/viewer/live/ja/live.html
株式会社メイエレック 名古屋市熱田区神宮四丁目3番36号
プリセットボタンのみコントロール可
機種 Canon VB-C60
http://livecamera2.meielec.co.jp/viewer/live/ja/live.htm
コントロール不可
機種 Canon VB-M40
http://livecamera.meielec.co.jp/viewer/live/ja/live.html
うめや旅館 小野川温泉街 山形県米沢市小野川町2494
ズーム以外コントロール
機種 Panasonic BB-HCM371
http://umeya.dip.jp:8080/CgiStart?page=Single&Language=1
Apache2.4.4以降.htaccess書き方が変わった様で忘れないように覚書
参考先 http://stackoverflow.com/questions/22475131/htaccess-filterprovider-giving-error-500
変更前
<IfModule mod_deflate.c> # Insert filter SetOutputFilter DEFLATE FilterDeclare Compression CONTENT_SET FilterProvider Compression DEFLATE Content-Type $text/plain FilterProvider Compression DEFLATE Content-Type $text/css FilterProvider Compression DEFLATE Content-Type $application/xhtml FilterProvider Compression DEFLATE Content-Type $application/xml FilterProvider Compression DEFLATE Content-Type $application/xhtml+xml FilterProvider Compression DEFLATE Content-Type $application/rss+xml FilterProvider Compression DEFLATE Content-Type $application/atom+xml FilterProvider Compression DEFLATE Content-Type $application/x-javascript FilterProvider Compression DEFLATE Content-Type $image/svg+xml FilterProvider Compression DEFLATE Content-Type $text/html FilterProvider Compression DEFLATE Content-Type $application/javascript FilterProvider Compression DEFLATE Content-Type $text/javascript FilterChain Compression <IfModule mod_setenvif.c> # Netscape 4.x has some problems... BrowserMatch ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08 have some more problems BrowserMatch ^Mozilla/4\.0[678] no-gzip # MSIE masquerades as Netscape, but it is fine BrowserMatch \bMSIE !no-gzip !gzip-only-text/html # Don't compress images/archives/music/video/etc SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:avi|mov|mp3|mp4|rm|flv|swf|mp?g)$ no-gzip dont-vary </IfModule> <IfModule mod_headers.c> # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary Header append Vary Accept-Encoding env=!dont-vary </IfModule> </IfModule>
変更後
<IfModule mod_deflate.c> # Insert filter SetOutputFilter DEFLATE FilterDeclare Compression CONTENT_SET FilterProvider Compression DEFLATE "%{Content_Type} = 'text/plain'" FilterProvider Compression DEFLATE "%{Content_Type} = 'text/css'" FilterProvider Compression DEFLATE "%{Content_Type} = 'application/xhtml'" FilterProvider Compression DEFLATE "%{Content_Type} = 'application/xml'" FilterProvider Compression DEFLATE "%{Content_Type} = 'application/xhtml+xml'" FilterProvider Compression DEFLATE "%{Content_Type} = 'application/rss+xml'" FilterProvider Compression DEFLATE "%{Content_Type} = 'application/atom+xml'" FilterProvider Compression DEFLATE "%{Content_Type} = 'application/x-javascript'" FilterProvider Compression DEFLATE "%{Content_Type} = 'image/svg+xml'" FilterProvider Compression DEFLATE "%{Content_Type} = 'text/html'" FilterProvider Compression DEFLATE "%{Content_Type} = 'application/javascript'" FilterProvider Compression DEFLATE "%{Content_Type} = 'text/javascript'" FilterChain Compression <IfModule mod_setenvif.c> # Netscape 4.x has some problems... BrowserMatch ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08 have some more problems BrowserMatch ^Mozilla/4\.0[678] no-gzip # MSIE masquerades as Netscape, but it is fine BrowserMatch \bMSIE !no-gzip !gzip-only-text/html # Don't compress images/archives/music/video/etc SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:avi|mov|mp3|mp4|rm|flv|swf|mp?g)$ no-gzip dont-vary </IfModule> <IfModule mod_headers.c> # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary Header append Vary Accept-Encoding env=!dont-vary </IfModule> </IfModule>