Hi all,
I'm doing a modification on this pre-existent javascript code and wonder that if anyone can help me elaborate this Single Cam Display to Multi Cam Display...
the m_chNum, m_resolution, m_frameRate are collected from a form where user will decide which channel, resolution and frame rate are used. The program when such far to display SINGLE view back camera; however, I'm interested in MULTI display all cameras (ie: 8 cam) at the same time. I guess is utilizing a for loop or something like that in the function on the above, but my javascript skill is way too novice...
Please help!
Thanks
I'm doing a modification on this pre-existent javascript code and wonder that if anyone can help me elaborate this Single Cam Display to Multi Cam Display...
Code:
function Do_PlayVideo()
{
m_chNum = Channel.value;
m_frameRate = FrameRate.value;
m_resolution = Resolution.value;
mySDK.WESPSDKMonitor.PlayVideo(m_chNum, m_resolution, m_frameRate);
}
the m_chNum, m_resolution, m_frameRate are collected from a form where user will decide which channel, resolution and frame rate are used. The program when such far to display SINGLE view back camera; however, I'm interested in MULTI display all cameras (ie: 8 cam) at the same time. I guess is utilizing a for loop or something like that in the function on the above, but my javascript skill is way too novice...
Please help!
Thanks