Flash CS3 video component tutorial: Difference between revisions

The educational technology and digital learning wiki
Jump to navigation Jump to search
mNo edit summary
Line 24: Line 24:
; The executive summary
; The executive summary


Flash has built-in video management components.
Flash has built-in video management components.  


However, using these components still requires basic knowledge of ActionScript. In this article we will try to show a few design patterns that you can copy and adapt.
* The FLVPlayBack Video Component is really easy to use.
* To use other components you may need some ActionScript.


; The executive summary
; The executive summary
* Encode your video with the Video Encoder
* Import to Flash


== Preparing your video ==
== Preparing your video ==
Line 34: Line 37:
=== Video encoding with Flash CS3 ===
=== Video encoding with Flash CS3 ===


This package includes a video encode with which you can define cue points:
This package includes a video encoder with which you can transcode various video formats into *.flv format and if you wish, define cue points:
* event points
* navigation points


; To encode a video
==== Video transcoding ====
* Open the tool
* Open the Flash Video Encoder tool
* ''Add ...'' button to add a new video.
* ''Add ...'' button to add a new video.
* ''Settings'' to define output settings and to add video cues, etc.
* ''Settings'' to define output settings and to add video cues, etc. You can just leave the defaults if you like
* ''Start Queue'' to encode.
* Click ''Start Queue'' to encode your video. It will be saved in the same directory


I use the medium Flash quality with default codecs.
I use the medium Flash quality with default codecs.


; Cue Point Settings
==== Cue Points ====


{{quotation|Cue points cause the video playback to start other actions within the presentation. For example, you can create a Flash presentation that has video playing in one area of the screen while text and graphics appear in another area. A cue point placed in the video starts an update to the text and graphic, while they remain relevant to the content of the video. (Adobe CS3 Video Encode Help, sept. 2007)}}
{{quotation|Cue points cause the video playback to start other actions within the presentation. For example, you can create a Flash presentation that has video playing in one area of the screen while text and graphics appear in another area. A cue point placed in the video starts an update to the text and graphic, while they remain relevant to the content of the video. (Adobe CS3 Video Encode Help, sept. 2007)}}
Line 62: Line 63:
Each cue point consists of a name and the time at which it occurs and we then can retrieve this information in Flash.
Each cue point consists of a name and the time at which it occurs and we then can retrieve this information in Flash.


; Editing
==== Video Editing ====
This tool also has limited editing capacity
The Flash Video Encoder tool also has limited editing capacity


* Select the "Crop and resize" tab
* Select the "Crop and resize" tab
* You can make it smaller
* You can crop the video (i.e. take of space on top, bottom, right, left
* Crop it (i.e. take of space on top, bottom, right, left
* You can take off frames from the beginning and the end (move the little triangles below the playhead
* Take of stuff from beginning and end (move the little triangles below the playhead


=== Other tools ===
=== Other transcoding tools ===


Your modern cell phone it may encode video with MP4. Flash 9 (CS3) can not import this format. The only good and free tool I know is SUPER (it actually has more features than many commercial tools).
Your modern cell phone it may encode video with MP4. Flash 9 (CS3) can not directly import this format. If you don't have access to the Flash Video Encoder tool, you may download the free SUPER tool (it has more features than many commercial tools).


Read the [[MP4]] article to see how I managed to use the free (and excellent)  [http://www.erightsoft.com/SUPER.html SUPER] encoder to go from MP4 to MPV with MPEG3-v2/MP3.
Read the [[MP4]] article to see how I managed to use this free (and excellent)  [http://www.erightsoft.com/SUPER.html SUPER] encoder to go from MP4 to MPV with MPEG3-v2/MP3.


== A simple video import example ==
== A simple video import example ==
Line 95: Line 95:
* If you only have access to a standard webserver: Choose "progessive download" from a webserver.
* If you only have access to a standard webserver: Choose "progessive download" from a webserver.
* You then can choose from a variety of built-in video control skins for the '''FLVPlayBack'' Video Component which will be automatically added to your library (you can change the skin again later).
* You then can choose from a variety of built-in video control skins for the '''FLVPlayBack'' Video Component which will be automatically added to your library (you can change the skin again later).
In other words, the video you will import uses the standard video component you also can find in the "Components" panel.
In other words, the video you will import will use the standard video component you also can find in the "Components" panel.


; Step 4 - Fine tune the stage
; Step 4 - Fine tune the stage
Line 105: Line 105:
* I suggest to put the file in same directory. But on a larger server you may have a video directory. The advantage of putting the file in the same directory is that you can more easily move the *.swf file around.
* I suggest to put the file in same directory. But on a larger server you may have a video directory. The advantage of putting the file in the same directory is that you can more easily move the *.swf file around.


; Step 6 - Fix the source
; Step 6 - Fix the source file location
You must tell Flash where the video file sits.
You must tell Flash where the video file sits.
* Click on the video component  
* Click on the video component  
Line 118: Line 118:
[[Image:Flash-cs3-video-component-source.png|thumb|800px|none|Configuring the video component]]
[[Image:Flash-cs3-video-component-source.png|thumb|800px|none|Configuring the video component]]


; If the video doesn't play
; If the video doesn't play...
* Most likely you forgot to give the right source path, either a full URL, a relative URL, or a file name that sits in the same directory.
* Most likely you forgot to define the right source path, either a full URL, a relative URL, or a *.flv file name that sits in the same directory.
* File names are case sensitive on most Web servers ! Also avoid using blanks and other strange characters in your file name.
* File names are case sensitive on most Web servers ! Also avoid using blanks and other strange characters in your file name.
** Good = ''myvideo.flv'' - Bad = my ''Video.flv''
** Good = ''myvideo.flv'' - Bad = my ''Video.flv''
Line 129: Line 129:


; Doing it the other way round.
; Doing it the other way round.
* To use this component, you don't need to import the video file really. You also can just drag the component on the scene and then add the name of a video file in the source field of the parameters panel. Click in it and use the file chooser menu.
* To use this component, you don't need to import the video file really. You also can just drag the component on the scene and then add the name of a video file in the source field of the parameters panel. Click on the field and use the file chooser menu.
* Tick ''match source FLV dimensions''. This will adjust the size of the video control widget.
* Tick ''match source FLV dimensions''. This will adjust the size of the video control widget.


Line 150: Line 150:


; Step 3 - Add some simple controls
; Step 3 - Add some simple controls
* You need at '''least''' play button
* You need at '''least''' a play button
* We just used the button component described in the [[Flash components tutorial]]. It will move the playhead in frame 2 where the video starts.
* We just used the button component described in the [[Flash components tutorial]]. It will move the playhead in frame 2 where the video starts.


The embed in timeline option is probably only useful if you plan to play around with fine grained frame-by-frame jumping around. Therefore you rather should use a video that is external or transform to an internal video (sorry no details here).
The embed in timeline option is probably only useful if you plan to play around with fine grained frame-by-frame jumping around. Otherwise it may be better to use an external video as described above.
 
; Results
; Results
* [http://tecfa.unige.ch/guides/flash/ex/component-video-intro/flash-cs3-video-simple-embedd.html flash-cs3-video-simple-embedd.html]
* [http://tecfa.unige.ch/guides/flash/ex/component-video-intro/flash-cs3-video-simple-embedd.html flash-cs3-video-simple-embedd.html]
Line 160: Line 159:
: http://tecfa.unige.ch/guides/flash/ex/component-video-intro/
: http://tecfa.unige.ch/guides/flash/ex/component-video-intro/


== Working with video components and actions ==
== Working with smaller video components and cue points ==
 
(to be written)


(needs to be written)


[[Category: Multimedia]]
[[Category: Multimedia]]

Revision as of 20:45, 22 September 2007

This article or section is currently under construction

In principle, someone is working on it and there should be a better version in a not so distant future.
If you want to modify this page, please discuss it with the person working on it (see the "history")

The video components is a prebuilt interface elements (widgets) that will speed up programming of video integration. This is part of Flash CS3 tutorials.

Introduction

Learning goals
Learn how to create and use the Flash 9 (CS3) video component
Learn some Action Script 3.0
Prerequisites
Flash CS3 desktop tutorial
Flash drawing tutorial
Flash components tutorial
Moving on
The Flash article has a list of other tutorials.
Quality
This text should technical people get going and may not be good enough for self-learning beginners. It can be used as handout in a "hands-on" class. That is what Daniel K. Schneider made it for...
Level
It aims at beginners. More advanced features and tricks are not explained here.
The executive summary

Flash has built-in video management components.

  • The FLVPlayBack Video Component is really easy to use.
  • To use other components you may need some ActionScript.
The executive summary
  • Encode your video with the Video Encoder
  • Import to Flash

Preparing your video

Video encoding with Flash CS3

This package includes a video encoder with which you can transcode various video formats into *.flv format and if you wish, define cue points:

Video transcoding

  • Open the Flash Video Encoder tool
  • Add ... button to add a new video.
  • Settings to define output settings and to add video cues, etc. You can just leave the defaults if you like
  • Click Start Queue to encode your video. It will be saved in the same directory

I use the medium Flash quality with default codecs.

Cue Points

“Cue points cause the video playback to start other actions within the presentation. For example, you can create a Flash presentation that has video playing in one area of the screen while text and graphics appear in another area. A cue point placed in the video starts an update to the text and graphic, while they remain relevant to the content of the video. (Adobe CS3 Video Encode Help, sept. 2007)”

You don't need cue points to just play a video, but we may come back to this later.

  • Select the Cue Points Tab
  • Glide forwards and backwards the video to select positions you'd like to mark
  • Click on the + to add a new cue point.
  • Event cue points are used to trigger ActionScript methods when the cue point is reached, and let you synchronize the video playback to other events within the Flash presentation.
  • Navigation cue points are used for navigation and seeking, and to trigger ActionScript methods when the cue point is reached. Embedding a navigation cue point inserts a keyframe at that point in the video clip to enable viewers to seek to that place in the video
Adobe CS3 Video Encoder Cue Points

Each cue point consists of a name and the time at which it occurs and we then can retrieve this information in Flash.

Video Editing

The Flash Video Encoder tool also has limited editing capacity

  • Select the "Crop and resize" tab
  • You can crop the video (i.e. take of space on top, bottom, right, left
  • You can take off frames from the beginning and the end (move the little triangles below the playhead

Other transcoding tools

Your modern cell phone it may encode video with MP4. Flash 9 (CS3) can not directly import this format. If you don't have access to the Flash Video Encoder tool, you may download the free SUPER tool (it has more features than many commercial tools).

Read the MP4 article to see how I managed to use this free (and excellent) SUPER encoder to go from MP4 to MPV with MPEG3-v2/MP3.

A simple video import example

In this example we will just import a video I (quickly) made with my Nokia N73 cell phone. According to the manual, the best and easiest strategy seems to be to directly import a *.flv file. Use the CS3 video encoder if you have the package.

Web server version

Step 1 - FLV files
  • To import a video you should first encode it as *.flv file.
  • But other imports are possible too (have to check this ...)
Step 2 - Import the video
  • Create a new layer and call it "video"
  • Menu File->Import->Import Video

You then can from a popup menu choose how the video should be deployed.

Step 3 - Choose "Standard web server / progessive download"
  • If you only have access to a standard webserver: Choose "progessive download" from a webserver.
  • You then can choose from a variety of built-in video control skins for the 'FLVPlayBack Video Component which will be automatically added to your library (you can change the skin again later).

In other words, the video you will import will use the standard video component you also can find in the "Components" panel.

Step 4 - Fine tune the stage
  • Change the background
  • Adjust stage size to video size or add some text etc.
  • You also can change the skins for the video control skin. Simply open the Parameters panel. Scroll down to the skin field and select another one from the popup menu. Same thing for other parameters. You can quite safely play around with them.
Step 5 - Copy the *.flv file to your web server
  • I suggest to put the file in same directory. But on a larger server you may have a video directory. The advantage of putting the file in the same directory is that you can more easily move the *.swf file around.
Step 6 - Fix the source file location

You must tell Flash where the video file sits.

  • Click on the video component
  • Open the parameter panel (menu Window->Properties->Parameters in case its not already docked)
  • Scroll down a bit and change the source field. E.g. in our case I killed everything in front of the file name office-dks.flv.

For example, instead of:

E:\schneide\te\coap2110\ex\component-video-intro\office-dks3.flv

I just used

office-dks3.flv
  • The simplest solution is just leave only the the *.flv file name (see step 5)
Configuring the video component
If the video doesn't play...
  • Most likely you forgot to define the right source path, either a full URL, a relative URL, or a *.flv file name that sits in the same directory.
  • File names are case sensitive on most Web servers ! Also avoid using blanks and other strange characters in your file name.
    • Good = myvideo.flv - Bad = my Video.flv
Results
http://tecfa.unige.ch/guides/flash/ex/component-video-intro/
Doing it the other way round.
  • To use this component, you don't need to import the video file really. You also can just drag the component on the scene and then add the name of a video file in the source field of the parameters panel. Click on the field and use the file chooser menu.
  • Tick match source FLV dimensions. This will adjust the size of the video control widget.

Embedd into timeline version

If you embedd a video into the timeline, then you don't get the ready-made video control as above Choose "embedd video" if the file is really small and if you don't have an audio track or don't care about synchronization problems. Embedded video also can make your timeline really long, but you can choose to have it its own timeline (I think that will convert if to a *.flv file, have to check). Anyhow, in this example we took the hundreds of frames timeline option.

We will insert the video in frame #2. We also will add a play button that will jump to this frame 2.

Step 1 - FLV files
  • Create one
Step 2 - Import the video as embedd
  • Create a new layer and call it "video"
  • Insert a new empty keyframe in frame 2 (since we don't want the video play on load in this case).
  • Menu File->Import->Import Video
Step 3 - Add some simple controls
  • You need at least a play button
  • We just used the button component described in the Flash components tutorial. It will move the playhead in frame 2 where the video starts.

The embed in timeline option is probably only useful if you plan to play around with fine grained frame-by-frame jumping around. Otherwise it may be better to use an external video as described above.

Results
http://tecfa.unige.ch/guides/flash/ex/component-video-intro/

Working with smaller video components and cue points

(needs to be written)