Archive for the 'Video' Category

Schneider TM and Lustfaust Live Webcast

Thursday, September 20th, 2007 by Thomas

The full video webcast of Schneider TM and Lustfaust performing during the opening event of Haunch Of Venison Berlin is now available for on-demand viewing on the Lustfaust blog.

Related Posts:

Flash: Video Tip

Friday, March 2nd, 2007 by Luis

Interesting and informative Flash Video tip by Felix Raab (betriebsraum):

Calculating an optimal buffer size.

To calculate the buffer size you should consider three values, the length of your flv file in seconds, the bitrate of your flv file in kilobits per second and the user’s bandwidth in kilobits per second.

Read more here.

More on Buffering:

Flash: FLV Topic

Tuesday, February 20th, 2007 by Luis

After a few weeks over-excited by papervision 3D stuff is time to go back to some other old hot Flash topics such as FLV (Flash Video)

Why BBC doesn’t use Flash Video:

Don’t miss this post by Stefan Richter where he resumes a reply from Steve Hermann to user comments about recent changes on the BBC website and in particular why the BBC chose not to use Flash Video for its news stories.

Wordpress FLV Plugins:

A couple of good WorPress plugins to embed FLV. Both plugins use Jeroen’s FLV Player.

  • WordTube - A WordPress Media Center plugin.
  • FLV Embed is a WordPress plugin made to simplify the process of adding FLV videos into your blog.

Related Posts:

Google Video

Thursday, November 2nd, 2006 by Luis

Today in a conversation with a friend about Google Video player interface, I realise that people don’t even use a small percentage of the nice features that the player offers.

I’m not going to get into the discussion of why use Flash instead of Quicktime, Windows Media Player or any other kind of technology (The Rise of Flash Video), I just want to highlight a few Video Google player features:

Link within a Video:

You can access to specific points inside a video. All you have to do is add the time you’d like to access to the end of a video’s URL, like this.

Keyboard shortcuts:

  • Space bar plays and pauses the movie
  • Right arrow skips the video forward 5%
  • Left arrow jumps back 5% in the video
  • Up arrow increases the volume by 5%
  • Down arrow decreases the volume by 5%
  • The “M” key toggles muting
  • The “F” key toggles fullscreen
  • Clicking on the ESC key in full screen mode returns to normal mode

Caption Playback:

Go to this page, select a captioned video, and while playing it you can click on the [CC] symbol to turn captions on and off.

Flash: Transparent Video

Tuesday, September 26th, 2006 by Luis

How to make a transparent flash video using Adobe After Effects 7.0 Pro and Flash, by Paul Jenkins.

Read the tutorial here.

Flash: Full Screen Video

Thursday, June 15th, 2006 by Luis

[UPDATE:]
Flash: Full-Screen Mode
Flash full-screen mode and Flash Player Update 3 Beta 1 (build 9.0.60.120)

This is just an attempt to create a full screen Flash Video piece (original video size 360 x 204), trying to keep a decent quality by using Video.smoothing property

You can see the result here: Full Screen FLV.

Actionscript:
  1. Stage.align = "TL";
  2. Stage.scaleMode = "noScale";
  3. Stage.showMenu = false;
  4. var timeline:MovieClip = this;
  5. var _minW:Number = 360;
  6. var _minH:Number = 204;
  7.  
  8. var video_container:MovieClip = timeline.attachMovie ('video_container', 'video_container', timeline.getNextHighestDepth ());
  9.  
  10. function onResize ()
  11. {
  12.     var scaleY:Number = Math.round (100 * (Stage.height) / _minH);
  13.     var scaleX:Number = Math.round (100 * (Stage.width) / _minW);
  14.    
  15.     var scaleFactor:Number = Math.min (scaleY, scaleX);
  16.  
  17.     if (scaleFactor> 100) video_container._xscale = video_container._yscale = scaleFactor;
  18.  
  19.     video_container._x = Math.round ((Stage.width / 2) - (video_container._width / 2));
  20.     video_container._y = Math.round ((Stage.height / 2) - (video_container._height / 2));
  21. }
  22.  
  23. var connection_nc:NetConnection = new NetConnection ();
  24. connection_nc.connect (null);
  25. var stream_ns:NetStream = new NetStream (connection_nc);
  26. video_container.my_video.attachVideo (stream_ns);
  27. video_container.my_video.smoothing = true;
  28. stream_ns.play ("riding_giants_m480[1].flv");
  29.  
  30. Stage.addListener (this);
  31.  
  32. onResize ();


You can download the source files here. (The video is not included)

Related Links:

FLV and Wordpress

Wednesday, April 5th, 2006 by Luis

Wordpress plugin to simplify the process of inserting flash video inside a Wordpress post or page. The plugin is build around Jeroen Wijerings FLV Player

If you want to insert mp3 files inside a Wordpress post or page, you should take a look at WP-SingleMP3

Related entries:

Flash: FLV resources

Monday, March 27th, 2006 by Luis

Fisrt day in the office after a nice holidays in Valencia (Fallas) and I feel a little bit lazy yet, cleaning up my computer I found a few links to FLV tutorials and articles that might interest to someone:

Related entries:

Video: Shining

Wednesday, October 12th, 2005 by Matthias

A post-production house organized a competition where assistant editors re-cut trailers for famous movies to try and make them seem like different movies.

This is the winner: Shining

Flash: Create a Video background pattern in Flash 8

Wednesday, October 12th, 2005 by Luis

Someone ask me about creating a background pattern with video, which it is not a big deal since we can use MovieClip.beginBitmapFill method in order to fill a drawing area with a bitmap image or like in this case with a video by using the BitmapData.draw method.

SWF sample (You need a webcam):

[flash]http://www.blog.lessrain.com/wp-content/upload/tilebackground3.swf,400,200[/flash]

Actionscript:
  1. import flash.display.BitmapData;
  2.  
  3. var w:Number = Stage.width;
  4. var h:Number = Stage.height;
  5. var columns:Number = 6;
  6. var rows:Number = 3;
  7.  
  8. this.attachMovie("videoContainer", "myVideoContainer", 10);
  9. var my_cam:Camera = Camera.get();
  10.  
  11. myVideoContainer.video.attachVideo(my_cam);
  12. myVideoContainer.video._width = Math.round(w/columns);
  13. myVideoContainer.video._height =Math.round(h/rows);
  14.  
  15. var pattern:BitmapData = new BitmapData(myVideoContainer.video._width, myVideoContainer.video._height, false, 0);
  16.  
  17. function createTiles():Void {
  18.     with (_level0) {
  19.         beginBitmapFill(pattern);
  20.         moveTo(0, 0);
  21.         lineTo(w, 0);
  22.         lineTo(w, h);
  23.         lineTo(0, h);
  24.         lineTo(0, 0);
  25.         endFill();
  26.     }
  27. }
  28.  
  29. createTiles();
  30.  
  31. this.onEnterFrame=function() {
  32.     pattern.draw(myVideoContainer);
  33. }


Flash: Video Articles

Wednesday, October 12th, 2005 by Luis

Macromedia has released a couple of new interesting Flash Video articles:

Flash: How to de-interlace video in real-time

Sunday, October 9th, 2005 by Luis

Fabio Sonnati has a very nice and useful article in his blog about how to de-interlace video in real-time using the Convolution Filter in Flash 8.

Worth to read: Flash real-time deinterlacing best-practice.

Related Articles: