Record Live Video
PYSoft Broadcaster has feature to record live video using attached video devices. This option can be used to archive a live event to a file for later use, or to distribute it to a Web server or for playback on local computers.
To record live video:
- Click Camera Recording Settings from the Options menu.
- Select Recording Enabled to record content.
- Click Browse to select a file.
- Select Use Counter for File Name to have incrementally named files.
- Select Limit Record Duration to set up maximum duration of recorded files.
- Click Ok.
- Start camera to perform recording.
- Also the program has features to upload recorded files to a web site. See more info how to upload recorded files.
How to add Recorded Video to Web Page
Open your page in Notepad add the following code to HTML text:
<OBJECT ID="MMPlayer1" WIDTH=280 HEIGHT=240
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">
<PARAM NAME="FileName" VALUE="http://www.mysite.com/MyVideo.wmv">
<PARAM NAME="ShowControls" VALUE="1">
<PARAM NAME="ShowStatusBar" VALUE="1">
<PARAM NAME="ShowDisplay" VALUE="0">
<PARAM NAME="DefaultFrame" VALUE="Slide">
<PARAM NAME="Autostart" VALUE="1">
<embed type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp"
src="http://www.mysite.com/MyVideo.wmv"
Name=MMPlayer1 Autostart=1 ShowControls=1
ShowDisplay=0 ShowStatusBar=1 DefaultFrame="Slide"
width=280 height=240>
</embed>
</OBJECT>
Modify the FileName and src parameters with full URL to video file.
Change the Width and Height parameters according to image size.
How to add recorded video to Web page created with Actual Drawing
In the Actual Drawing program:
Click Advanced from the Insert menu and then click Multimedia File.
Type URL to the video file in the File Name or URL box.
Specify the image width and height in the appropriate boxes.
Click Ok.
|