| Author |
|
stoem Big Kahuna

stoem == Stefan
Joined: 05 January 2004 Location: United Kingdom Posts: 1079
|
| Posted: 19 March 2004 at 17:18 | IP Logged
|
|
|
post any questions about this tutorial here
__________________ Flashcomguru.com
|
| Back to Top |
|
| |
InaFlash Flashcom Newbie

Joined: 18 September 2004 Posts: 6
|
| Posted: 18 September 2004 at 16:19 | IP Logged
|
|
|
Can we save this streaming video to hard disk?
|
| Back to Top |
|
| |
stoem Big Kahuna

stoem == Stefan
Joined: 05 January 2004 Location: United Kingdom Posts: 1079
|
| Posted: 18 September 2004 at 19:26 | IP Logged
|
|
|
camtasia can save to AVI format
stoem
__________________ Flashcomguru.com
|
| Back to Top |
|
| |
InaFlash Flashcom Newbie

Joined: 18 September 2004 Posts: 6
|
| Posted: 19 September 2004 at 12:03 | IP Logged
|
|
|
Can we do it with Flash scripts alone?Imean..I am capturing video using a webcam live using a flash player..Is it possible to save it using flash script itself?
|
| Back to Top |
|
| |
stoem Big Kahuna

stoem == Stefan
Joined: 05 January 2004 Location: United Kingdom Posts: 1079
|
| Posted: 19 September 2004 at 14:29 | IP Logged
|
|
|
no, not possible
__________________ Flashcomguru.com
|
| Back to Top |
|
| |
Pinkfluffybunny Flashcom Newbie


Joined: 25 September 2004 Location: United States Posts: 3
|
| Posted: 25 September 2004 at 04:04 | IP Logged
|
|
|
Hi,
I'm kinda a peep . I have downloaded the fla saved the swf with the correct connection to our FCS. My desktop displays great in the browser on my machine.
When I open the page on any other machine I cannot see the broadcast.
I know this was probably already answered somewhere, but I can find it.
Edited by Pinkfluffybunny on 25 September 2004 at 04:08
|
| Back to Top |
|
| |
lkoumis Flashcom Newbie

Joined: 15 October 2004 Posts: 3
|
| Posted: 15 October 2004 at 01:20 | IP Logged
|
|
|
I have the same problem. Does anyone knows why? Thanks.
|
| Back to Top |
|
| |
Ultimate Moderator

Super Flashcommer
Joined: 05 January 2004 Location: Canada Posts: 1130
|
| Posted: 15 October 2004 at 02:26 | IP Logged
|
|
|
The file doesn't actually publish out to the server, have you added in the publishing and playing of the netStream?
__________________ Blog: http://www.sti-media.com
Community Site: http://www.FMSGuru.com
Game: Checkers
|
| Back to Top |
|
| |
lkoumis Flashcom Newbie

Joined: 15 October 2004 Posts: 3
|
| Posted: 15 October 2004 at 17:34 | IP Logged
|
|
|
Well I was wondering about that, how the remote web server can see my screen. Please clarify what do you mean by "added in the publishing and playing of the netStream?" I am a newbie. So far I made the chat, video and whiteboard to work fine on the server. What do I need to upload other than the swf file?
By the way, are any better whiteboard components on the web that include eraser and freehand?
Thank you.
|
| Back to Top |
|
| |
Ultimate Moderator

Super Flashcommer
Joined: 05 January 2004 Location: Canada Posts: 1130
|
| Posted: 16 October 2004 at 08:24 | IP Logged
|
|
|
are you using the communication components?
If so then you won't need the file in this tutorial. All you need is camtasia installed and pick it in the list of cameras.
If not, then you'll have to do a bit of studying I think on the following topics (check out the pdf's that come with FCS, they are the best):
netStream.play()
netStream.publish()
and you should probably take a quick look at netStream information objects.
If you are looking for examples though, I think you'll find the samples that come with FCS pretty good and quite helpful in understanding how to program up some basic apps.
__________________ Blog: http://www.sti-media.com
Community Site: http://www.FMSGuru.com
Game: Checkers
|
| Back to Top |
|
| |
eRom Flashcom Newbie


Joined: 30 November 2004 Location: France Posts: 5
|
| Posted: 30 November 2004 at 10:12 | IP Logged
|
|
|
Hi !
If you would record and publish in the same time, You have to setup 2 NetStream Object.
- NetStream for recording
- NetStream for publishing live video
There's just a sample code for Recording, Publishing video with Camtasia Drivers.
Code:
//-------- ActionScript 2.0 -------
var publishStream:NetStream = new NetStream(connection);
var subscribeStream:NetStream = new NetStream(connection);
var liveCamera:Camera = Camera.get(getLiveCamera());
var liveVideo:Video;
var videoName = "RoundRectangle";
function cbStartRecording_click_callback(ev:Object):Void {
publishStream.publish(videoNam e, "record");
publishStream.attachVideo(live Camera);
subscribeStream.play(videoName );
liveVideo.attachVideo(subscrib eStream);
cbStartRecording.enabled = false;
cbStopRecording.enabled = true;
}
function cbStopRecording_click_callback(ev:Object):Void {
publishStream.publish(false);
cbStartRecording.enabled = true;
cbStopRecording.enabled = false;
}
|
|
|
In this way, you record a video file named "RoundRectangle.flv" in the streams folder of your app, in the same time you publisk it in live ;)
Bye.
|
| Back to Top |
|
| |
stoem Big Kahuna

stoem == Stefan
Joined: 05 January 2004 Location: United Kingdom Posts: 1079
|
| Posted: 30 November 2004 at 10:17 | IP Logged
|
|
|
thanks for this, what does your getLiveCamera() method look like?
stoem
__________________ Flashcomguru.com
|
| Back to Top |
|
| |
eRom Flashcom Newbie


Joined: 30 November 2004 Location: France Posts: 5
|
| Posted: 30 November 2004 at 10:24 | IP Logged
|
|
|
Just like the tutorial method for finding Camtasia Drivers...
Code:
function getLiveCamera():Number {
for (var i:Number = 0; i < Camera.names.length; i++) {
if (Camera.names == "Camtasia Studio Video Capture Driver") {
return i;
}
}
throw new Error("No ScreenVideo Recorder was found !");
} |
|
|
@+
|
| Back to Top |
|
| |
Reload Flashcom Newbie


Joined: 09 June 2005 Location: Reunion Posts: 1
|
| Posted: 09 June 2005 at 13:47 | IP Logged
|
|
|
I advise you to try tool Screen VidShot 1.2. It also can help you for creating different tutorials. It allows you to record capture to avi,asgf,wmn.You can find it here:
http://geovid.com/Screen_VidShot/
Enjoy! :)
|
| Back to Top |
|
| |
NirL Flashcom Newbie


Joined: 10 July 2005 Location: Israel Posts: 1
|
| Posted: 10 July 2005 at 19:05 | IP Logged
|
|
|
camtasia can use as "camera"
but i can't make it to record the sound too
can u tell me how to do it?
|
| Back to Top |
|
| |
tworrick Flashcom Newbie


Joined: 21 July 2005 Location: United States Posts: 1
|
| Posted: 21 July 2005 at 02:34 | IP Logged
|
|
|
Hi I am new to this program.I learned how to capture video on screen .what i cant figure out is how do you show the movies as a web cam . like how on yahoo can you produce a web cam view for others to see. I cant figure it out .. Thank you
|
| Back to Top |
|
| |