Kevin Jose Martin
Kevin Jose Martin

Reputation: 43

Publish Prerecorded (or live) Video, instead of Camera in Flash/Flex/Air via RTMP to FMS

I'm looking for a way to stream video from the desktop to an FMS installation. I know that in ActionScript, it's possible to do:

netStream.attachCamera(camera);
netStream.attachAudio(mic);

but not:

netStream.attachVideo(file);

Is there another way to get by this without using FMLE?

I have also tried creating a NativeProcess with Flazr (gives me an error) and ffmpeg (not reliable for streaming via rtmp).

Upvotes: 0

Views: 826

Answers (1)

www0z0k
www0z0k

Reputation: 4434

try NetStream.appendBytes() to pass a video loaded with URLStream as a ByteArray

Upvotes: 1

Related Questions