LouiZeForum
Would you like to react to this message? Create an account in a few clicks or log in to continue.
LouiZeForum

3D vrml
 
HomeHome  SearchSearch  Latest imagesLatest images  RegisterRegister  Log in  3Dchats / forums3Dchats / forums  
Le deal à ne pas rater :
Display Star Wars Unlimited Ombres de la Galaxie : où l’acheter ?
Voir le deal

 

 webcam in vrml

Go down 
+7
magnus
Jack Barlett
korben
isa
Findescarrotte
peter le cochon
alain
11 posters
Go to page : Previous  1, 2, 3 ... 5, 6, 7 ... 9, 10, 11  Next
AuthorMessage
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptySun 30 Dec - 15:49

J'ai le fichier Flash de BlogvideoTV , enfait le Tchat fait partie du flash et associer au connection du site et de la video ,...

codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
width="520" height="190"
id="mycam_player"
align="middle">




quality="high"
bgcolor="#000000"
width="520"
height="465"
name="mycam_player"
align="middle"
allowScriptAccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer" />
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptySun 30 Dec - 17:31

Sad J'ai regarder un peut le flash de BV ,

Le code (Action )MainMovie

Code:

// Action script...

// [Action in Frame 1]
function subscribeClick()
{
    _root.ns.play(_root.nomroom);
    _root.createEmptyMovieClip("mc", _root.getNextHighestDepth());
    _root.videoContainer.attachVideo(ns);
    _root.mc.attachAudio(ns);
    _root.monSon = new Sound(_root.mc);
    _root.initSon();
    playButton.enabled = false;
    stopButton.enabled = true;
} // End of the function
function initSo2()
{
    _root.so2 = SharedObject.getRemote("viewers" + _root.nomroom, nc.uri, false);
    so2.onSync = function (evtObj)
    {
        var _loc2;
        if (evtObj[0].code == "clear")
        {
            if (so2.data.id_viewer == undefined)
            {
                _loc2 = 1;
            }
            else
            {
                _loc2 = so2.data.id_viewer + 1;
            } // end else if
            iviewerEnCours = _loc2;
            so2.data.id_viewer = _loc2;
            _root.viewer = "invité " + _loc2;
            _root.connectSocket();
        }
        else if (evtObj[0].code == "change")
        {
            _loc2 = so2.data.id_viewer;
            so2.data.id_viewer = _loc2;
        } // end else if
    };
    so2.onStatus = function ()
    {
    };
    var _loc3 = so2.connect(nc);
} // End of the function
function connexion(isOk)
{
    if (isOk)
    {
        _root.pseudo = _root.viewer;
        texteSend = "<message room=\"" + _root.nomroom + "\" id=\"" + _root.iviewerEnCours + "\" pseudo=\"" + _root.pseudo + "\" value=\"connexion\" />";
        socket.send(texteSend);
    } // end if
} // End of the function
function reception(chaine)
{
    _root.nombreConnectes = 0;
    for (var _loc2 = chaine.firstChild; _loc2 != null; _loc2 = _loc2.nextSibling)
    {
        if (_loc2.attributes.value == "connexion")
        {
            if (_loc2.attributes.room == _root.nomroom)
            {
                ++_root.nombreConnectes;
            } // end if
        } // end if
    } // end of for
    _root.nb_connectes.text = _root.nombreConnectes + " téléspectateurs";
} // End of the function
function connectSocket()
{
} // End of the function
function initSon()
{
    _root.vol = _root.monSon.getVolume();
    _root.vol_bar.mask_vol_bar._width = _root.vol;
} // End of the function
System.security.allowDomain("*");
lien.onPress = function ()
{
    getURL("http://www.blog-video.tv");
};
nb_connectes.selectable = false;
_root.nomroom = "";
_root.ipserveur = "localhost";
var lv = new LoadVars();
lv.onLoad = function (success)
{
    if (success)
    {
        _root.nomroom = this.code2;
        _root.subscribeClick();
        initSo2();
    }
    else
    {
        sortie.text = "Error connecting to server.";
    } // end else if
};
var sendlv = new LoadVars();
sendlv.id = _root.id;
sendlv.sendAndLoad("http://www.blog-video.tv/paramRoomSuscribe.php", lv, "POST");
var nc = new NetConnection();
nc.connect("rtmp://91.121.103.11/oflaDemo");
var ns = new NetStream(nc);
var viewer = "";
var iviewerEnCours;
_root.nb_connectes.text = "";
_root.socket = new XMLSocket();
_root.socket.onXML = reception;
_root.socket.onConnect = connexion;
vol_pict.toggle = true;
var flagvol = false;
vol_pict.onPress = function ()
{
    if (flagvol)
    {
        flagvol = false;
        _root.monSon.setVolume(_root.vol);
        this.vol_pict_in._visible = true;
    }
    else
    {
        flagvol = true;
        _root.monSon.setVolume(0);
        this.vol_pict_in._visible = false;
    } // end else if
};
vol_pict.vol_pict_in._visible = true;
vol_bar.onPress = function ()
{
    this.createEmptyMovieClip("knob_mc", vol_bar.getNextHighestDepth());
    this.knob_mc._x = _xmouse - this._x;
    this.knob_mc.left = this.knob_mc._x;
    this.knob_mc.right = this.knob_mc.left + this._width;
    this.knob_mc.right = this.knob_mc.left;
    this.knob_mc.bottom = this.knob_mc._y;
    this.knob_mc.top = this.knob_mc._y;
    this.knob_mc._x = vol * largeur / 100;
    this.knob_mc._alpha = 0;
    with (vol_bar.knob_mc)
    {
        lineStyle(0, 10066329);
        beginFill(10066329);
        moveTo(1, 2);
        lineTo(4, 0);
        lineTo(4, 5);
        lineTo(0, 5);
        lineTo(1, 2);
        endFill();
    } // End of with
    this.knob_mc.startDrag(false, this.knob_mc.left, this.knob_mc.top, this.knob_mc.right, this.knob_mc.bottom);
    this.knob_mc.isDragging = true;
    this.mask_vol_bar._width = Math.round(_xmouse - this._x);
    this.onMouseMove = function ()
    {
        if (this.knob_mc.isDragging)
        {
            this.mask_vol_bar._width = Math.round(_xmouse - this._x);
            _root.vol = this.mask_vol_bar._width;
            _root.monSon.setVolume(_root.vol);
        } // end if
    };
    this.onRelease = this.onReleaseOutside = function ()
    {
        this.knob_mc.stopDrag();
        this.knob_mc.isDragging = false;
        this.mask_vol_bar._width = Math.round(_xmouse - this._x);
        _root.vol = this.mask_vol_bar._width;
        _root.monSon.setVolume(_root.vol);
    };
};
Back to top Go down
alain
fondateur
fondateur
alain


Number of posts : 23529
Localisation : Dompierre sur Veyle ,France
Registration date : 2005-04-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptySun 30 Dec - 17:42

ahah !! trop fort !!

c'est bien ça que je voulais aller voir !

il y a des années j'avais SFWscanner qui me servait de couteau à huïtres ,

mais il marche pas souvent now , many protections Sad

tu fais comment , Peugeot ?

si c'est secret , LOL , fais moi mp Smile

ceci dit je comprends rien à leur code pour l'instant Sad(
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptySun 30 Dec - 18:02

Attention le scripts c'est delui du flash export et non celui du site même , en faite il on plusieurs flash ..! , j'ai essayer url ( rtmp://91.121.103.11/oflaDemo ) marche pot.!! snifff le truc est ou dans tout ca !! héhé sur les connection?? les ID membres ?? Il y a un ta de questions ... affraid

Edit Arff oublier de dire l'images , elle est présente dans le shader et sprite

re Edit la frame ( 9, streamvideo25, videoContainer, 1.0, 1.0, Scale[2.000, 1.999] Rotate[0.0, 0.0] )
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptySun 30 Dec - 21:38

Question Ta trouvé quelques chose de concluent alain ???
Back to top Go down
alain
fondateur
fondateur
alain


Number of posts : 23529
Localisation : Dompierre sur Veyle ,France
Registration date : 2005-04-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptySun 30 Dec - 21:43

ahahahahaaha lOOOOOOOlll !!!!!

j'allais te poser la même question !!

ahah

nono moi j'ai décroché , ça me prend la tête LOL ,
ça dépasse mes faibles capacités Smile

on va continuer à embeder blog TV , je crois Smile

c'est fluide et ya le son , et c'est des pots à Jack Smile)

avant mon décrochage , LOL
je me suis dit , et si tu arrangeais le Proto de Wildpeaks ??

j'ai jeté un coup d' oeil , mais ça m'a pris la tête aussi LOL

vivement 2008 Smile)))

remarque ya au moins un truc marrant , dans tout ça , c'est que korben ,
qui a écrit ici au moins 2 - 3 fois ,
il doit recevoir,
le pauvre ,

un mail d'avertissement chaque fois qu'on écrit un post inutlie LOOOOOOOOOL

comme celui_ci Smile))
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptySun 30 Dec - 21:58

Maintenant , je me demande si , au lieu de passé directement avec le lien de blocvideo sur ton scripte , c'est de créé un fichier .m3u ou l'on place le lien de blogvideo , et héberger le fichier chez nous le fichier .m3u et de marquer l'url de notre hébergement si cela serait pas mieux , je verais ca demain ...

Ce soir je suis un peus I don't want that en dormi , pas beaucoup dormi cette semaine ,,
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 4:06

TCHAT











Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 15:53

Very Happy Salut les loustiques .. ! Alain hiers j'ai tout de même encore fait un teste video mais en passant via un flux video sur une texturemovie , sur le scripts cela ne fonctionne pas , obliger de metre le lien en directe sur la textures en ( texturemovie) mais c'est pas un problème.

Le flux video est celui en stream en mms:// ca passe mais pas bien , j'ai le son ! j'ai l'image mais achurrée tu sais comme une télé qui n'a pas d'entène .!

Le problémé aussi est que c'est ca vient ( exemple ) tu fait une playlist video en stream et bien après le premier morceau , ca ne fonctionne plus , il faut faire un refresh du fichier pour recharger la video suivante ..

Mais bon je ne laisse pas tombé on finira par trouvé chaussure a nos pieds..!!
Back to top Go down
alain
fondateur
fondateur
alain


Number of posts : 23529
Localisation : Dompierre sur Veyle ,France
Registration date : 2005-04-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 16:19

aaaaaaaaaaaaaaaaaa !!!!!!!!

montre nous le truc je veux essayer Smile))

bah t'es le boss tu vas y arriver Smile

hey Peugeot , c'est quoi ce chat à la con ? loll

Smile))))
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 17:13

Ahhh ben alain !! tien le lien du teste !!

C'est pas ma camera , c'est un flux video du net , pub , bande annons cinéma ,etc!!, mais je sais comment faire pour le faire via la camera , donc je teste avant de tout lancé !!

http://lostworld3d.jexiste.fr/no_cache/HIFI/Portablevideo3.wrl

Il y a un lègé temp de chargement , le son arrive , puis l'image achurer , si tu a rien c'est que la video a changer dans leur playlist , donc fait un refech du fichier.

Mr.Red pas beau mon Tchat a la con hahahahahah !! je savais qu'il allais faire de l'éffet .!!!Miaw cat
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 17:43

Alain pourrais-tu me traduire cette partie de peter ?

Quote :
The chosen protocol/player must support the media-type or codec you are trying to stream.

I have tryed out with a wmv file I have found in the www and it works fine. If you use the mms:// protocol, the file streams to the texture.

I have also tryed with an audio stream (got no web-cam, lol) generated by the windows media encoder, and it also works... the URL in that case - a live stream - looks like "mms://my_ip:2120", being my_ip your current public ip or a DNS and 2120 the port you are broadcasting your stream on (depends on your settings and port forwarding).

Je crois que l'image achuré est du faire que dans url , il n'y a pas de port comme il le dit dans son poste ( :2120) je crois!! peut etre cela
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 17:55

Very Happy J'ai dégoter ce tutorial pour le placement d'un relai !!
vlc-streaming-live-avec-serveur-relai

C'est génial je vais tester ca et voir si ca passe !!

http://www.bouriol.info/index.php/2007/06/27/59-vlc-streaming-live-avec-serveur-relai
Back to top Go down
alain
fondateur
fondateur
alain


Number of posts : 23529
Localisation : Dompierre sur Veyle ,France
Registration date : 2005-04-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 19:18

hum j'ai rien sur portable 3 Sad

j'ai essayé IE , Crazy , blaxx , BS ...

par contre l'url est bonne , elle s'ouvre bien dans mon player ..

bon , Peter dit :

Quote :
le protocole choisi doit être supporté par le type de media ou de codec que tu essais de streamer
J'ai essayé avec un wmv trouvé sur le web et ça marche bien
Si tu utilises le protocole mms:// ça sera streamé sur la texture
J'ai aussi essayé un audio stream généré par windows media encoder
( vu que j'ai pas de webcam , LOL ) et ça marche aussi
L'url dans ce cas - a live strem - resemble à "mms://myIP:2120
avec ton adrese IP et le port où tu broadcast ton strem , ( ça depend de tes settings )


pff tu vas y arriver , Peugeot ,

mais en oublie pas d'ouvrir les huïtres quand même hein Smile

pis après tu mettras Directionnallight {direction 0 -1 0}

sur ton portable
LOL
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 20:17

Very Happy HOURRRRRRRRRA Very Happy HOURRRRRRRRRA Very Happy HOURRRRRRRRRA Very Happy HOURRRRRRRRRA Very Happy HOURRRRRRRRRA Very Happy HOURRRRRRRRRA


Ca y est c'est du tou cuit et ca fonctionne nikelle en VIDEO LIVE WEBCAM en stream sur la TextureMovie c'est parfait ca fonction avec un petit soft .!!
Back to top Go down
alain
fondateur
fondateur
alain


Number of posts : 23529
Localisation : Dompierre sur Veyle ,France
Registration date : 2005-04-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 20:23

montre vite , je pars au ciné dans 10 mn Smile)
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 20:41

atta
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 20:47

Voila

http://lostworld3d.jexiste.fr/no_cache/HIFI/Portablevideo3.wrl

mais j'ai pas encore le son car il n'a pas pris en conte mon peripherique audio bonc je bosse de sur

lol oublier le ligth arrrrff
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 20:49

on peus même générer tout les code en html !!! c'est super cool c'est une bonne anné qui arrive je le sens bien!!!
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyMon 31 Dec - 21:33

Very Happy Voila j'ai aussi fait le teste avec de l'audio , ca passe aussi mais il nous faut configuer correctement le sont pour ne pas avoir le retour , c'est a dire que c'est le micro qui dois tourné lors de la diffusion ..

Le Programme c'est WebcamXP en version Eval 21 jouer et pour l'acheter c'est 30 euro !! ca vas encore !!

Possibiliter aussi exporter le flux en relai sur un ftp pour une bonne diffusion , ici je l'ai fait de puis mon PC et donc pas fort recommander pour l'ip ou de la cacher via no_ip etcc... mais ca fonctionne correctement.
Back to top Go down
alain
fondateur
fondateur
alain


Number of posts : 23529
Localisation : Dompierre sur Veyle ,France
Registration date : 2005-04-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyTue 1 Jan - 1:47

bon humm .. je sais pas .. sur portable video3 je captais rien Sad

mais sur

mms://81.243.153.80:9001

j'avais l'image et le son de tes gamins, jecrois ,

ou alors c'était une chaine TV avec Disney , les souris tu sais Smile))

bon écoute , Peugeot , quoiqu'il en soit , bonne année 2008 ,
tu l'a bien mérité !

et on se revoit ( demain ) en 2008 ok ?

Smile))
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyTue 1 Jan - 2:05

Bonne annéééééé 2008


WIDTH="415"
HEIGHT="350"
CLASSID="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"
STANDBY="Loading Windows Media Player components..."
TYPE="application/x-oleobject"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"
style="border: 5px ridge #148F62">













































Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyTue 1 Jan - 2:08

Very Happy Si ca fonctionnais , j'était occuper a bidouieerr avec la no-ip

mms://lostworld3d.no-ip.org/

Edit

Grrrrr la no-ip ne fonctionne pas sur le wrml , obliger de donné l'IP !! toujour des batons dans les roues !!

Bonne Annéé 2008 A TOUS !!!!!!!!!!
Back to top Go down
rien
+100
+100



Number of posts : 180
Age : 34
Registration date : 2005-12-11

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyTue 1 Jan - 2:21

Happy new Year cheers
Back to top Go down
Findescarrotte
+1000
+1000



Number of posts : 1956
Registration date : 2007-06-19

webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 EmptyTue 1 Jan - 2:55

Shocked LOL sur le teste ( les deux ) son + video , il y a un fort ralentisement entre la diffusion et ce que l'on regarde .!

Bon sur le vrml , le mms:// fonctionne que sur IP , si on la cache , ben pan ca fonctionne plus sur le vrml ..mais ca fonctionne via l'explorateur ..

j'ai coupe le son et laisser juste la video , avec ip c'est fluide , mais deux minutes de décalage entre la diffusion .!!

autre choses aussi ca fonctionne avec ( Windows Media Encoder ) c'est gratuit .!! il y a beaucoup a configuer mais ca passe aussi et sur le port que l'on veus , pas oublier le routeur ouvrire le meme port hein , sinon passe pas .!
Back to top Go down
Sponsored content





webcam in vrml - Page 6 Empty
PostSubject: Re: webcam in vrml   webcam in vrml - Page 6 Empty

Back to top Go down
 
webcam in vrml
Back to top 
Page 6 of 11Go to page : Previous  1, 2, 3 ... 5, 6, 7 ... 9, 10, 11  Next

Permissions in this forum:You cannot reply to topics in this forum
LouiZeForum :: ARTS :: 3D art :: 3D gallery-
Jump to: