|
Home > Archive > Macromedia Flash Server > June 2005 > streaming flv size
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
streaming flv size
|
|
| Matthew Ganz 2005-06-22, 5:45 pm |
| hi.
this could just be me ( and probably is ) but i have an flv that is 320
x 238 residing on my flashcomm server but for some reason it's coming
thru as almost a 100x100 when i stream it. in fact, all my flvs are
coming thru at this tiny size.
am i forgetting to set s/thing somewhere? i establish my net connection,
set my net stream, attach it to my video box ( which is set to 320 x 238
) and it's still not working.
any ideas as to why this might be happening?
thanks. -- matt.
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
|
| try setMode:
incomingStreamName_ns.setMode(320, 238, 12); // width, height,
framerate
// Lisa Larson
iFoxCam.com
On Jun 22, 2005, at 2:12 PM, Matthew Ganz wrote:
> hi.
>
> this could just be me ( and probably is ) but i have an flv that is
> 320 x 238 residing on my flashcomm server but for some reason it's
> coming thru as almost a 100x100 when i stream it. in fact, all my flvs
> are coming thru at this tiny size.
>
> am i forgetting to set s/thing somewhere? i establish my net
> connection, set my net stream, attach it to my video box ( which is
> set to 320 x 238 ) and it's still not working.
>
> any ideas as to why this might be happening?
>
> thanks. -- matt.
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Matthew Ganz 2005-06-22, 5:45 pm |
| hmm...not working, but am i setting it up correctly?
__nc = _global.g_main_nc; // a reference to my already established net
connection
__ns = new NetStream( __nc );
__ns.setMode( 320, 238, 15 );
videoBox.attachVideo( __ns );
__ns.play( videoName );
thanks for lending a hand. much appreciated.
matt.
Lisa wrote:
> try setMode:
>
> incomingStreamName_ns.setMode(320, 238, 12); // width, height, framerate
>
>
> // Lisa Larson
> iFoxCam.com
>
> On Jun 22, 2005, at 2:12 PM, Matthew Ganz wrote:
>
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
|
| matt,
try this as well:
__ns._width = 320;
__ns._height = 238;
// Lisa Larson
iFoxCam.com
On Jun 22, 2005, at 2:36 PM, Matthew Ganz wrote:
> hmm...not working, but am i setting it up correctly?
>
> __nc = _global.g_main_nc; // a reference to my already established net
> connection
> __ns = new NetStream( __nc );
> __ns.setMode( 320, 238, 15 );
> videoBox.attachVideo( __ns );
> __ns.play( videoName );
>
> thanks for lending a hand. much appreciated.
>
> matt.
>
> Lisa wrote:
>
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Matthew Ganz 2005-06-22, 5:45 pm |
| lisa,
you'll have to excuse me as i just found that somewhere during this
process my video box was resized to a much smaller dimension. i
apologize for the time wasted and thank you for your help.
best,
matt.
Lisa wrote:
> matt,
>
> try this as well:
>
> __ns._width = 320;
> __ns._height = 238;
>
> // Lisa Larson
> iFoxCam.com
>
> On Jun 22, 2005, at 2:36 PM, Matthew Ganz wrote:
>
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
|
|
|
|
|