Bonsoir a tous
Tout d'abord, je tiens a me présenter : je ne suis pas programmeur!
Voila : je possède un encodeur video IP (j'entre un signal vidéo composite et je visualise le résultat sur une page web à une adresse IP).
Je voudrais créer une nouvelle page (je possède un éditeur html Webplus X2) pour extraire et intégrer uniquement le cadre vidéo (car il y a des logos , boutons et autres choses qui ne m’intéressent pas). Je n'ai pas accès au serveur, je ne peux pas modifier directement la page par défaut.
Voici le code source :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html>
<head>
<title>NetVideoOCX</title>
 
<SCRIPT> 
function workaround()
{
window.document.all.item("ocx").style.display = "none"
window.document.all.item("ocx").style.display = ""
}
</SCRIPT>
 
</head>
 
<form name=activex ><WINDWEB_URL>
<input type=hidden name=url>
 
</form>
 
<body  topmargin="0" leftmargin="0" onscroll="workaround();">
<div align="center">
  <table border="0" cellspacing="0" cellpadding="0" id = "table">
  <tr>
    <td bgcolor="#294552" valign="top" colspan="2">
 
<object classid="clsid:7B43048F-DA7A-458F-AF35-D825BDBB6816" codebase="./codebase/NetVideoOCX.cab#version=2,2,2,6"
  standby="Waiting..." id="NetOCX" name="ocx" align="top">
 
</object>
<script language="javascript"> 
//document.activex.url.value="192.0.1.234"
document.activex.url.value=document.URL
var OCXobj = document.getElementById("NetOCX");
OCXobj.SetServerIP(activex.url.value)
if (screen.width<=800) 
{
    table.width=1004;
    table.height=600;
    NetOCX.width=1004;
	NetOCX.height=600;
} 
else
{
    table.width=screen.width - 22;
	table.height=screen.height - 166;
    NetOCX.width=screen.width - 22;
	NetOCX.height=screen.height - 166;
}
				
 
</script>
    </td>
  </tr>
  <center>
  </table>
</div>
</body>
</html>


Qui pourrait me donner des pistes et des idees ?
J’espère avoir été clair ?
Merci d'avance