John, seeking each second is also working when i load the flv from server,
so here's what i've got:
Locally:
flv plays ok
flv seeks ok
From server via netStream:
flv seeks ok
flv plays wrong (randomly appears or not, it freezes on first frame)
Tomorrow i'll try and download the trunk but i think that the "corporate
network" doesn't allow ssh connections...any http possibilities?
Anayway it can be a issue about how small and strange my flvs are, or
something about SetBufferTime tweaks/hacks that should be done, idk. For the
needs we have if seek() works it's perfect, that's all we need ;)
Cheers and thanks for your time
On 12/4/06, John Grden <[EMAIL PROTECTED]> wrote:
ok, thanks for letting me know. let us know what happens with the trunk.
If something is wrong, I'll have you log it for us with that demo flv -
cool?
On 12/4/06, Storm <[EMAIL PROTECTED]> wrote:
>
> Seeking is working in that flv of mine when i read it locally as i wrote
> before, if i do ns.seek(ns.time+1) (or -1 for that matters) it works, so
> theres something wrong with the server i think. I will have to try
> downloading the trunk.
>
> Cheers
>
> Carlos
>
> On 12/4/06, Storm < [EMAIL PROTECTED]> wrote:
> >
> > Uh...if i load the flv locally with something like:
> >
> > this.nc=new NetConnection();
> > this.nc.connect(null);
> > this.ns=new NetStream(nc);
> > this.miVideo.attachVideo(ns);
> > this.ns.play ("key1.flv");
> >
> > it plays fully and smoothly (every frame is shown)... the problem
> > comes when i load it from the server...
> >
> > On 12/4/06, Storm <[EMAIL PROTECTED]> wrote:
> > >
> > > well John, that's indeed more info that i had lol. I haven't tested
> > > seeking at all, i'm just trying to play it from the begining to the end
and
> > > it stucks in the first frame (1). So if it's a problem with my flv
> > > nevermind, just let me know where can i read about seting seek times and
> > > stuff . btw i created that using ffmpeg and the thing is that *sometimes*
> > > it's playing ok. I'm confused.
> > >
> > > Thanks for your help.
> > >
> > > On 12/4/06, John Grden < [EMAIL PROTECTED]> wrote:
> > > >
> > > > well, I got your FLV and I opened it up in my flv player
> > > > (standalone zinc wrapped swf player) and I think I see what you mean. I
> > > > can't seek properly at all. Just depends on what the seek time is set
to,
> > > > so I'd have to drop it into an fla with the component and play with it
> > > > there.
> > > >
> > > > what do you have your seek times set to?
> > > >
> > > > On 12/4/06, Storm < [EMAIL PROTECTED]> wrote:
> > > > >
> > > > > sure, sending it off-list John, thank you.
> > > > >
> > > > > On 12/4/06, John Grden <[EMAIL PROTECTED] > wrote:
> > > > > >
> > > > > > hmmm, not really sure, but you might go ahead and try the
> > > > > > trunk Storm.
> > > > > >
> > > > > > can you send me a copy of the FLV for testing?
> > > > > >
> > > > > > On 12/4/06, Storm < [EMAIL PROTECTED]> wrote:
> > > > > > >
> > > > > > > Yes, it may sound weird but that's my scenario. "In the real
> > > > > > > world" they would be pages/frames converted from a ppt/pdf and
what not.
> > > > > > > Anyway when opening any flv from server sometimes it freezes
> > > > > > > in the first frame, sometimes it plays ok and sometimes it
doesn't show at
> > > > > > > all. That's on 0.6RC1 . Something changed in the trunk about
> > > > > > > this?
> > > > > > >
> > > > > > > On 12/4/06, John Grden < [EMAIL PROTECTED]> wrote:
> > > > > > > >
> > > > > > > > are you saying that your FLV has keyframes at everyframe?
> > > > > > > >
> > > > > > > > On 12/4/06, Storm <[EMAIL PROTECTED]> wrote:
> > > > > > > > >
> > > > > > > > > Right...the flv is showing...sometimes.
> > > > > > > > > In the time i've being reading the list i've read
> > > > > > > > > something on this issue... is this fixed in the trunk? do i
have to some
> > > > > > > > > some hacking to buffer times client/side or server/side ?
> > > > > > > > >
> > > > > > > > > My need is playing flvs composed only by keyframes
> > > > > > > > > frame-by-frame. Is seeking working? May i help to make it
work? ;)
> > > > > > > > >
> > > > > > > > > Thanks guys
> > > > > > > > >
> > > > > > > > > On 12/4/06, Storm <[EMAIL PROTECTED]> wrote:
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Hi list!
> > > > > > > > > >
> > > > > > > > > > After messing around with videoconference demo with
> > > > > > > > > > great results now i'm trying to understand oflademo since i
want to add some
> > > > > > > > > > "flv playing" capabilities to my app. I've found some
things that i don't
> > > > > > > > > > understand well and i hope some of you could help me:
> > > > > > > > > >
> > > > > > > > > > @ Application.java:
> > > > > > > > > > private IServerStream serverStream; ---> i don't see
> > > > > > > > > > where is this used... it makes sense that server has a
reference to the
> > > > > > > > > > streams it's serving but this is declared and only
referenced by comented
> > > > > > > > > > code...
> > > > > > > > > >
> > > > > > > > > > @ client side:
> > > > > > > > > > (i've got used to follow AS code in classes and this
> > > > > > > > > > fla-attached code is driving me bananas lol). Well, if i'm
following this
> > > > > > > > > > correctly the way to create a netStream to play an flv in
the server is:
> > > > > > > > > >
> > > > > > > > > > ns= new NetStream(myNetConnection);
> > > > > > > > > > ns.setBufferTime(whatever);
> > > > > > > > > > myVideo.attachVideo(ns);
> > > > > > > > > > ns.play(name_of_the_flv);
> > > > > > > > > >
> > > > > > > > > > well...i'm getting the list of flvs in the streams
> > > > > > > > > > folder of my app correctly but those aren't working (video
is not showing),
> > > > > > > > > > so I suppose that i did something wrong...any tips?
> > > > > > > > > > btw...my test flv consists in 5 keyframes, i hope it
> > > > > > > > > > isn't the problem...
> > > > > > > > > >
> > > > > > > > > > Some useful data:
> > > > > > > > > > Red5 0.6RC1 running on winXP pro
> > > > > > > > > > tests are done locally.
> > > > > > > > > >
> > > > > > > > > > --
> > > > > > > > > >
-------------------------------------------------------------------
> > > > > > > > > >
> > > > > > > > > > "Nos gusta los domingos ir al parque a pinchar los
> > > > > > > > > > globos de los niños para verlos llorar" .- Eskorbuto
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > --
> > > > > > > > >
> > > > > > > > >
-------------------------------------------------------------------
> > > > > > > > > "Nos gusta los domingos ir al parque a pinchar los
> > > > > > > > > globos de los niños para verlos llorar" .- Eskorbuto
> > > > > > > > >
> > > > > > > > > _______________________________________________
> > > > > > > > > Red5 mailing list
> > > > > > > > > [email protected]
> > > > > > > > > http://osflash.org/mailman/listinfo/red5_osflash.org
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > --
> > > > > > > > [ JPG ]
> > > > > > > > _______________________________________________
> > > > > > > > Red5 mailing list
> > > > > > > > [email protected]
> > > > > > > > http://osflash.org/mailman/listinfo/red5_osflash.org
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --
> > > > > > >
> > > > > > >
-------------------------------------------------------------------
> > > > > > > "Nos gusta los domingos ir al parque a pinchar los globos de
> > > > > > > los niños para verlos llorar" .- Eskorbuto
> > > > > > >
> > > > > > > _______________________________________________
> > > > > > > Red5 mailing list
> > > > > > > [email protected]
> > > > > > > http://osflash.org/mailman/listinfo/red5_osflash.org
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > > > > > --
> > > > > > [ JPG ]
> > > > > >
> > > > > > _______________________________________________
> > > > > > Red5 mailing list
> > > > > > [email protected]
> > > > > > http://osflash.org/mailman/listinfo/red5_osflash.org
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > > > --
> > > > >
> > > > > -------------------------------------------------------------------
> > > > > "Nos gusta los domingos ir al parque a pinchar los globos de los
> > > > > niños para verlos llorar" .- Eskorbuto
> > > > >
> > > > > _______________________________________________
> > > > > Red5 mailing list
> > > > > [email protected]
> > > > > http://osflash.org/mailman/listinfo/red5_osflash.org
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > > --
> > > > [ JPG ]
> > > >
> > > > _______________________________________________
> > > > Red5 mailing list
> > > > [email protected]
> > > > http://osflash.org/mailman/listinfo/red5_osflash.org
> > > >
> > > >
> > > >
> > >
> > >
> > > --
> > > -------------------------------------------------------------------
> > > "Nos gusta los domingos ir al parque a pinchar los globos de los
> > > niños para verlos llorar" .- Eskorbuto
> > >
> >
> >
> >
> > --
> > -------------------------------------------------------------------
> > "Nos gusta los domingos ir al parque a pinchar los globos de los niños
> > para verlos llorar" .- Eskorbuto
> >
>
>
>
> --
> -------------------------------------------------------------------
> "Nos gusta los domingos ir al parque a pinchar los globos de los niños
> para verlos llorar" .- Eskorbuto
>
> _______________________________________________
> Red5 mailing list
> [email protected]
> http://osflash.org/mailman/listinfo/red5_osflash.org
>
>
>
--
[ JPG ]
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org
--
-------------------------------------------------------------------
"Nos gusta los domingos ir al parque a pinchar los globos de los niños para
verlos llorar" .- Eskorbuto
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org