15
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

http でのアクセスでカメラの映像を取得する

Posted at

実運用の場合は https でアクセスする環境を用意するはずですので、これは開発時や検証時用です。

Google Chrome で、getUserMedia を使用してカメラ映像を取得する場合は https でのアクセスが必要になりますが、ssh ポート転送を使用することで、http でのアクセスでもカメラの映像を取得することが可能です。

下記のように ssh ポート転送を指定しておくことで、http://127.0.0.1:18000/ へのアクセスで 192.168.1.105 上の Web サーバにリクエストが転送されるため、https でアクセスしなくてもカメラの映像が取得できます。

$ ssh -L 18000:127.0.0.1:8000 ubuntu@192.168.1.105

http で直接アクセスした場合

スクリーンショット 2016-07-20 21.12.23.png

ssh ポート転送を使用して http でアクセスした場合

スクリーンショット 2016-07-20 20.57.00.png
15
15
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?