Page 5 of 23

Re: ORBX viewer 2.0

PostPosted: Thu Oct 01, 2015 8:06 am
by Refracty
awesome news

Re: ORBX viewer 2.0

PostPosted: Fri Oct 02, 2015 7:14 pm
by Goldorak
Refracty wrote:awesome news


We'll be posting a link to our first tutorial on this forum later today/tonight.

The project will illustrate basic JSON/Lua fields for the following:

- multi-channel audio (background, looped, intro, etc.)
- hotspots
- node navigation

Next week, we are preparing samples covering playlists, videos, overlays, fade in/out controls, blend functions and more.

In parallel, we are testing basic navigable/motion stereo cube maps from ORC automatically rendered and exported from the cloud service. ORC handles compressing and building an ORBX media file It supports inserting custom JSON into the package as well. An ORC generated ORBX media file can be put on any URL, downloaded by users and play as-is in the new app.

Re: ORBX viewer 2.0

PostPosted: Fri Oct 02, 2015 7:54 pm
by therealjustlike
good news, thanks for the update!!!
Will look forward to dissecting this soon!

Re: ORBX viewer 2.0

PostPosted: Fri Oct 02, 2015 9:48 pm
by Refracty
Will the first basic tutorial today cover how to overlay a stereo video cube tile on top of a long-lat stereo image in a loop?

Re: ORBX viewer 2.0

PostPosted: Fri Oct 02, 2015 10:33 pm
by JonathanWinbush
Awesome news any visual reference would be a big help at this point.

Re: ORBX viewer 2.0

PostPosted: Sat Oct 03, 2015 4:59 am
by Goldorak
I am waiting on the cube maps to finish rendering for the tutorial scenes.

In the meantime, here is a sample lua script with overlays, audio and navigation links:

Code: Select all

-- ORBX Media Scene description table
-- automatic working comments may be the best reason for lua over json
--------------------------------------------------------------------------------
-- any lua code can go here as long as this file ends up returning the scene table
--------------------------------------------------------------------------------

return {
   scenes = {
      {
         title       = "intro",
         url       = "Video/Inro_LR.mp4",
         onDone   = "titlecard",
      }, {
         title      = "titlecard",
         url      = "Titles/title.png",
         audio_intro   = "Music/Title.wav",   
         onDone   = "entrance",
      },{
         title       = "entrance",
         url      = "entrace.png",
         audio      = "ambience.wav",
         audio_intro   = "2_audio_intro.wav",
         onAudioDone= "mainarea",
         onRollover     = {
               [0]    = { link = "mainarea", overlay  = "arrow.png" },  -- rollovers have a yaw dir value as the index, default to 45 degrees unless fov= is specified
               [180]    = { link = "exit_to_home", overlay  = "arrow.png", fov=120},  -- built in URL that exits the user to the parent home menu
                },
      }, {
         title       = "mainarea",
         url       = "3_mainarea.png",
         audio      = "ambience.wav",
         audio_intro   = "3_audio_railing.wav",
         onRollover     = {
               [180]    = { link = "entrance", overlay  = "arrow.png" },
                },
      },
}

Re: ORBX viewer 2.0

PostPosted: Sat Oct 03, 2015 7:02 am
by scottsquires
Thank you.

Re: ORBX viewer 2.0

PostPosted: Sat Oct 03, 2015 7:28 am
by 360precision
Feel like a donkey chasing a carrot :)

Matt

Re: ORBX viewer 2.0

PostPosted: Sat Oct 03, 2015 7:41 am
by Chriz
360precision wrote:Feel like a donkey chasing a carrot :)

Matt


:D

Re: ORBX viewer 2.0

PostPosted: Sat Oct 03, 2015 8:30 am
by ristoraven
Looks nice, clean, simple and awesome.