Changing scale - image disappears

Forum for questions and support relating to the 1.24.x releases only.
Locked
pjhealy
Posts: 4
Joined: Mon Jan 18, 2010 3:28 pm

Changing scale - image disappears

Post by pjhealy »

Hi,

I've got ZM running reliably and all seems well. However, when I click on a camera and try to change it's scale, the image appears briefly and then disappears.

This manifests itself in Firefox 3.5.x - IE works fine.

Has anyone else come across this?

Thanks - Pat
reaton
Posts: 6
Joined: Fri Sep 19, 2008 11:39 pm
Location: SE Kansas

Post by reaton »

I'm having the same problem.

Any ideas?
timcraig
Posts: 195
Joined: Mon Dec 10, 2007 5:53 pm
Location: San Jose, CA

Post by timcraig »

This was with firefox not liking changing the size of mjpeg streams. The SVN version of Zoneminder has a fix for this.
andrew
Posts: 16
Joined: Thu Jan 11, 2007 9:03 pm

Post by andrew »

How can you change this in the .deb version as i have the same issue ?
mastertheknife
Posts: 678
Joined: Wed Dec 16, 2009 4:32 pm
Location: Israel

Post by mastertheknife »

andrew
Posts: 16
Joined: Thu Jan 11, 2007 9:03 pm

Post by andrew »

Thank you.
In file skins/classic/views/js/event.js

Inside function changeScale(), find this line and comment it out by placing // before it.
Here, change this:
Code:
streamScale( scale );

To:
Code:
// This is command being sent to the streamer (zms) to change the resolution, which should save bandwidth when decreasing the size, but can kill streams with certain browsers. This line is already commented out for live streams, but not for events, and thats why we are commenting it out.
// streamScale( scale );


mastertheknife.
Locked