Showing posts with label video. Show all posts
Showing posts with label video. Show all posts

Monday, April 29, 2013

How to create Avatar Sit locations on any object in a Jibe world in Unity3d


Here's a short tutorial video that will show you how to create avatar sit locations on any object in your Jibe world.  It's a very powerful and flexible system where you simply drag and drop sit locations onto anything in your multiuser Jibe world, allowing you to easily create collaborative meeting environments that encourage avatars to gather together in groups.
In this video, I also review how to avoid the accidental misuse of a script that could potentially cause your Avatar to fall through the floor.  Safety First!


Creating Sit Locations in Jibe and Unity3d from John Lester on Vimeo.

Take care,
-John "Pathfinder" Lester
Chief Learning Officer, ReactionGrid

Monday, April 8, 2013

How to embed and play a movie on an object in Unity3d and Jibe


Watching "Hedgehog in the Fog"
in my Jibe world.

Note: You'll need the Unity Pro editor if you want to work with Movie Textures in Unity3d.
Unity3d allows you to embed and play videos on any surface in a 3d environment.
This means you can easily create a web-based Jibe world where avatars explore a multiuser 3d virtual space while watching videos or movies playing on screens/signs/any surface you wish.
The most common way to add video to a Unity3d project is by adding a video file to your project's Asset Folder, which automatically creates a Movie Texture (details here).
However, adding a video file directly to your project means the size of the video file will be added to the final size of your completed Unity webplayer file.  In other words, if your video clip is 50 Megabytes large, then your Unity webplayer file will have an extra 50 Megabytes added on to it.
For folks creating Jibe worlds with Unity3d (or anyone creating Unity webplayer files for streaming on the Web) this is not good.  You always want your webplayer file to be as small as possible so your webplayer file will finish downloading and start running as quickly as possible.
Fortunately, there's a way you can download/stream a movie from the Web so it doesn't add to the size of your Unity webplayer file.  Unity will immediately start playing the movie as soon as it has buffered enough of it, similar to how YouTube works.
Here's a simple example:
Step 1: Get your video ready as an OGG file on the Web

Unity needs videos to be in OGG format (file extension .ogg).  If you need to convert an existing video file into OGG format, I suggest using VLC (it's free and cross platform).  Take your OGG video, put it on a webserver somewhere and remember the URL.

Important Note: If you're managing your own webserver, be sure it has the MIME type for Ogg Vorbis enabled.  For Extension use .ogg, and for MIME type use application/ogg.
Here's a sample 60 Megabyte OGG video I made and uploaded to Wordpress.  Feel free to use this URL in your own tests.  You can also click on it to see how it plays in your browser.
http://becunningandfulloftricks.files.wordpress.com/2013/04/hedgehog_in_the_fog.ogg
Step 2: Create a Cube



In this example, we're going to make a basic cube and have the video play on its surface.  Of course you could flatten the cube so it looks likes a screen and then place it on a model of a TV or something.  I'm just being lazy.

Step 3: Create a new Javascript


I like the name of a script to remind me what the script actually does, so I'm going to call this new script ClicktoPlayWebMovie.


Here's the code.  Copy and paste this into your new script and save it.


var url = "http://becunningandfulloftricks.files.wordpress.com/2013/04/hedgehog_in_the_fog.ogg";
function OnMouseDown () {
 // Start download
 var www = new WWW(url);
// Make sure the movie is ready to start before we start playing
 var movieTexture = www.movie;
 while (!movieTexture.isReadyToPlay)
 yield;
// Initialize texture to be 1:1 resolution
 renderer.material.mainTexture = movieTexture;
// Assign clip to audio source
 // Sync playback with audio
 audio.clip = movieTexture.audioClip;
// Play both movie & sound
 movieTexture.Play();
 audio.Play();
}
// Make sure we have audio source
@script RequireComponent (AudioSource)
function Update () {
}
You can see at the top of the script that I've included my demo URL as the default movie URL.  You can always change it later.
Step 4: Add ClicktoPlayWebMovie script to your cube


Drag the ClicktoPlayWebMovie script from your Project folder onto the Cube in your Scene view.  This will add the script to the cube.


Now select your Cube in the Scene view and look at the Inspector settings.  You can change the movie URL by simply editing the URL field in the Inspector.
Also notice that there is an Audio Source added to the Cube.  This was added automatically when you added the script to the Cube, since the script needs an Audio Source component to work.  Don't delete or modify the Audio Source component.  Just leave it be.


Step 5: You're done.  Test it out!


You can run your Jibe world locally in the Unity editor and test it out that way.  Walk up to the cube and click on it.  The movie will start playing on all surfaces of  the cube.


Enjoy!
-John "Pathfinder" Lester
Chief Learning Officer, ReactionGrid Inc.

Thursday, August 16, 2012

Video of panel on "Virtual Worlds Revisited" at the 2012 Chicago eLearning and Technology Showcase

I recently participated in a wonderful “Virtual Worlds Revisited” panel discussion as part of the Chicago eLearning and Technology Showcase.  The panel was organized and moderated by Mike Kemmler, and participants included virtual world innovators Anders Gronstedt , Mark Jankowski and Karl Kapp.

The panel was held in Second Life, but the focus of our discussion was firmly on the future of new virtual world platforms and new modalities for immersive learning. We were projected into the physical world meeting room in Chicago where about 30 people attended in person. Here’s a summary:
Still deeply entrenched in Gartner’s Trough of Disillusionment, is it time to revisit virtual worlds?  Mike Kemmler hosts a virtual panel discussion via Second Life with a distinguished group of virtual world innovators, presenters, consultants, and authors, including Anders Gronstedt, Mark Jankowski, Karl Kapp, and John “Pathfinder” Lester. Panelists address the current state of learning in virtual worlds, explain platforms they see organizations using for immersive learning, and discuss current challenges and future possibilities of using virtual worlds for learning.
Thanks again, Mike, for this great opportunity.  It was an honor to be on a panel with such a stellar group of pioneers in virtual worlds and immersive learning.

NOTE: The audio from Second Life is bit choppy for the first 30 seconds, but then clears up perfectly for the rest of the video.

-John "Pathfinder" Lester
Chief Learning Officer
ReactionGrid Inc.

Thursday, November 17, 2011

Avoiding Virtual Couch Potato Syndrome: How to create a web-embedded video display that interfaces with your Jibe world

With Jibe, you can create your own multiuser 3d virtual world and embed it on any webpage.

This means you can have your Jibe world living on a webpage along with any other web-based content you like.

Today we'll learn how to create an embedded video display on a webpage that works with a video channel switcher inside your Jibe world.