diff options
author | MaZderMind | 2014-10-19 20:48:12 +0200 |
---|---|---|
committer | MaZderMind | 2014-10-19 20:48:12 +0200 |
commit | 7b7de7c3ebfd5af67a4e784958a47d22bf579f54 (patch) | |
tree | 09b79fbc1c3bebb2189427f249ca2017e0b6ec06 | |
parent | aa10d8d0e776506397403c2221704133d05b6e0f (diff) |
fix lq video stream size
Diffstat (limited to '')
-rw-r--r-- | room.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,8 +31,8 @@ switch($format) { case 'lq': $type = 'video'; - $width = 512; - $height = 288; + $width = 640; + $height = 360; break; } |