@Rudy-Trujillo
If you have two webcam, both are already tested with mjpg_streamer on Omega.
1: Just plug a Hub and Cams.
2: Check /dev
# ls /dev/video*
/dev/video0
/dev/video1
3: Start two mjpg_streamer
mjpg_streamer -i "./input_uvc.so -f 30 -r 640x480 -d /dev/video0" -o "./output_http.so -w ./www -p 8080" -b
mjpg_streamer -i "./input_uvc.so -f 30 -r 640x480 -d /dev/video1" -o "./output_http.so -w ./www -p 8081" -b
4: put HTML file /www/webcam/doubleview.html
<html>
<body>
<script language="JavaScript">
document.write('<img src="' + window.location.protocol + '//' + window.location.hostname + ':8080/?action=stream" width="320" height="240">' );
</script>
<script language="JavaScript">
document.write('<img src="' + window.location.protocol + '//' + window.location.hostname + ':8081/?action=stream" width="320" height="240">' );
</script>
</body>
</html>
5: Open http://[ OmegaIP ]/webcam/doubleview.html .