RE: QuickTime streaming server

2003-08-19 Thread Monte Goulding


 I have a very simple app that plays streaming movies from a QTSS.  The
 app works fine when in the IDE of Rev 2.1 B3.  When I create a
 standalone, and try to play a movie, I get the 5401 error.  The server
 does not even show that I am attempting to watch a movie.  I have tried
 accessing my server (which is local) as well videos on the net.  Keep
 in mind that everything works fine in the IDE.  What could I be missing
 here?


Does libURL even handle RTSP urls? I can't see it in the code. Or are you
using a reference movie as an intermediary between Rev and QTSS? Are you
testing the Standalone with the IDE open? Maybe QTSS can't deal with two
sockets to the same IP or something?

Regards

Monte

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: QuickTime streaming server

2003-08-19 Thread Mark Talluto
On Tuesday, August 19, 2003, at 04:15 PM, Monte Goulding wrote:


I have a very simple app that plays streaming movies from a QTSS.  The
app works fine when in the IDE of Rev 2.1 B3.  When I create a
standalone, and try to play a movie, I get the 5401 error.  The server
does not even show that I am attempting to watch a movie.  I have 
tried
accessing my server (which is local) as well videos on the net.  Keep
in mind that everything works fine in the IDE.  What could I be 
missing
here?

Does libURL even handle RTSP urls? I can't see it in the code. Or are 
you
using a reference movie as an intermediary between Rev and QTSS? Are 
you
testing the Standalone with the IDE open? Maybe QTSS can't deal with 
two
sockets to the same IP or something?

Monte,

I don't know if the libURL is needed.  I tried it both with it 
installed and without.  You can test it with another button that starts 
the player.  The movie is being hosted on the net.  So my exact 
situation can be tested by anyone.

Below is the code I am using.  I have it in a setup button for now:

on mouseUp
  global userSelection
  if exists (player movie) then delete player movie
  new player movie
  set the filename of player movie to empty
  put rtsp://131.96.156.185/Blackwater.mov into movieLocation
  set the filename of player movie to movieLocation
  set the height of player movie to 378
  set the width of player movie to 532
  set the topleft of player movie to 70,134
  exit to top
end mouseUp
I have tried it both with the Rev IDE open and closed.  Thanks for 
taking a look at this.



Best regards,
Mark Talluto
http://www.canelasoftware.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: QuickTime streaming server

2003-08-19 Thread Dar Scott
On Tuesday, August 19, 2003, at 04:43 PM, Mark Talluto wrote:

I have a very simple app that plays streaming movies from a QTSS.
I have used QTSS and the broadcast server some time in the past and 
have put them aside.

How did you build this?  What component allows you to do this?

Dar Scott

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: QuickTime streaming server

2003-08-19 Thread Monte Goulding

 
 
  I have a very simple app that plays streaming movies from a QTSS.  The
  app works fine when in the IDE of Rev 2.1 B3.  When I create a
  standalone, and try to play a movie, I get the 5401 error.  The server
  does not even show that I am attempting to watch a movie.  I have
  tried
  accessing my server (which is local) as well videos on the net.  Keep
  in mind that everything works fine in the IDE.  What could I be
  missing
  here?
 
 
  Does libURL even handle RTSP urls? I can't see it in the code. Or are
  you
  using a reference movie as an intermediary between Rev and QTSS? Are
  you
  testing the Standalone with the IDE open? Maybe QTSS can't deal with
  two
  sockets to the same IP or something?
 

 Monte,

 I don't know if the libURL is needed.  I tried it both with it
 installed and without.  You can test it with another button that starts
 the player.  The movie is being hosted on the net.  So my exact
 situation can be tested by anyone.

 Below is the code I am using.  I have it in a setup button for now:

 on mouseUp
global userSelection
if exists (player movie) then delete player movie
new player movie
set the filename of player movie to empty
put rtsp://131.96.156.185/Blackwater.mov into movieLocation
set the filename of player movie to movieLocation
set the height of player movie to 378
set the width of player movie to 532
set the topleft of player movie to 70,134
exit to top
 end mouseUp

 I have tried it both with the Rev IDE open and closed.  Thanks for
 taking a look at this.


I get a 404 Not Found error but before that I get the Q downloading image in
the player so it looks like rtsp urls do work (in the ide). I tried using
the player also and still got 404 not found so perhaps you've got the
filename wrong???

Regards

Monte



___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: QuickTime streaming server

2003-08-19 Thread Mark Talluto
On Tuesday, August 19, 2003, at 04:33 PM, Dar Scott wrote:

On Tuesday, August 19, 2003, at 04:43 PM, Mark Talluto wrote:

I have a very simple app that plays streaming movies from a QTSS.
I have used QTSS and the broadcast server some time in the past and 
have put them aside.

How did you build this?  What component allows you to do this?


I just used a player object.  You can view the code in my other post.



Best regards,
Mark Talluto
http://www.canelasoftware.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: QuickTime streaming server

2003-08-19 Thread Mark Talluto
On Tuesday, August 19, 2003, at 05:37 PM, Monte Goulding wrote:
I get a 404 Not Found error but before that I get the Q downloading 
image in
the player so it looks like rtsp urls do work (in the ide). I tried 
using
the player also and still got 404 not found so perhaps you've got the
filename wrong???

The url is ok.  I just typed it into the qt player at it plays just 
fine.  In fact, I just clicked on the link from my previous post and it 
opened up Apple's QTPlayer and it began to play.  You could substitute 
the link for any link that you know of.  I have used in the past some 
of the links Apple provides for testing as well.  I pulled the previous 
link from a discussion group on the QTSS on Apple's support site.

I am highly confused as to why this works so well in the IDE, but not 
in a standalone.  I am going to give it a try on MC and see how it goes.

Best regards,
Mark Talluto
http://www.canelasoftware.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: QuickTime streaming server

2003-08-19 Thread Monte Goulding

 On Tuesday, August 19, 2003, at 05:37 PM, Monte Goulding wrote:
 
  I get a 404 Not Found error but before that I get the Q downloading
  image in
  the player so it looks like rtsp urls do work (in the ide). I tried
  using
  the player also and still got 404 not found so perhaps you've got the
  filename wrong???
 

 The url is ok.  I just typed it into the qt player at it plays just
 fine.  In fact, I just clicked on the link from my previous post and it
 opened up Apple's QTPlayer and it began to play.  You could substitute
 the link for any link that you know of.  I have used in the past some
 of the links Apple provides for testing as well.  I pulled the previous
 link from a discussion group on the QTSS on Apple's support site.

 I am highly confused as to why this works so well in the IDE, but not
 in a standalone.  I am going to give it a try on MC and see how it goes.


OK... I did a test using Darwin Streaming Server and it seems to be as you
say if the player object is already existing but if you create the object on
the fly after loading QuickTime using the QTVersion function then it works.
My guess is you just need to load QuickTime prior to opening a stack with a
player so you might be able to use the startup handler of your splash
screen.

I'll leave it up to you to report this to bugzilla

Monte

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution