Posts Tagged ‘Conferences’

Voxeo Customer Summit 2011

Tuesday, October 18th, 2011

Another successful Voxeo Customer Summit came and went. This year’s sold out show featured our accomplishments achieved over the past year and highlighted new technology on the roadmaps scheduled for launch over the next year. Voxeo Labs had its own technology track at the show conducting workshops and deep technology dives on Tropo, Phono, SMSified, and the technology that powers it all, PRISM. Also getting a lot of attention at this conference was Rayo, our new real-time communications protocol. Many of these sessions were standing room only!

Our Private Cloud message received much attention at the event. Using our PRISM SIP / Media server, customers can deploy open source cloud instances of Tropo and the Phono Gateway in their own data centers or through public cloud PaaS vendors. In this configuration, Tropo and Phono can be white-labeled to better fit companies’ existing branding strategies. Our APIs can also be extended to better suit your needs. PRISM is truly carrier-grade cloud technology meaning that it can be virtualized to handle an incredibly large number of simultaneous calls using industry standard SIP-based VoIP with multi-tenant capabilities and clustering to offer extremely high availability.

Hands-on workshops for Tropo, Phono, and SMSified were conducted by Mark Headd and Jose de Castro. Customers were developing next generation communicants applications by the end of each session. A deep dive on PRISM and Rayo were conducted by Jose de Castro and the GWOB / Tropo-sponsored BurningMan communications project was recapped by Chris Matthieu.

We would like to thank each and every one of our customers and partners who attended this event. As you probably noticed from attending this event, we are obsessed with your success and feedback. See you again next year!

Tropo giving away a Parrot AR Drone @ LSRC!

Wednesday, August 10th, 2011

I’m leaving in about 30 minutes to head to Austin, TX – the site of LoneStar Ruby Conf 2011 – and boy am I excited. What am I so excited about? For one, I get to check out all the great talks, especially Ben Klang’s talk on Ruby & Adhearsion! I’m also excited to mingle with awesome Rubyists and to give away some really cool stuff, like a Parrot AR Drone! Yeah, that’s right, Tropo is holding a contest for most innovative Tropo app (Phono and SMSified apps will also be accepted, as fellow Voxeo Labs APIs) and will be giving away the AR Drone on the last day to the winner!

Below you will see a Drone fly thru our new offices as they were still under construction – man this is a cool video!

You can find more info on the event by checking out the Rubyology interview Chris Matthieu & I just had with Jim Freeze, the organizer of LSRC. It has tons of great info on what is sure to be a fantastic event!! We hope to see you there!

-John

Realtime Conferencing Dashboard with Tropo and Chloe

Wednesday, June 22nd, 2011

In yet another installment on this blog demonstrating how to build realtime applications with Tropo, I walk you through the process of creating a conferencing dashboard with Tropo and the Chloe realtime web server from Mashion.

Chloe is a great open source project that works extremely well with the Tropo platform. With Chloe and some modest Tropo and jQuery code, you can build a sophisticated and powerful conferencing dashboard.

You can get executables for Chloe by visting the Chloe GitHub repo, and you may also download the source and build on your local machine as well.

The sample code that I demonstrate in this screencast is also available on GitHub.

This example demonstrates yet again how ideal Tropo is for building powerful realtime communication applications. Chloe is easy to work with, powerful and open source, making it an excellent compliment to the apps you can build with the Tropo platform.

Check out the Chloe project and stay tuned to this blog for more posts in the future about building realtime apps with Tropo.

Conference Call Apps Made Easy with Tropo

Wednesday, March 16th, 2011

Tropo makes it super simple to create a conference call application.

In just a few lines of code, you can have a functional conference call application that you can use with Skype, SIP or a PSTN number.

Creating an app is as simple as this:

// Welcome the caller to the conference.
say("Welcome to the conference line. Press the star key to exit.");

// Start the conference.
conference("1337", {
    terminator: "*",
    playTones: true
    });

// Play a message when the caller leaves the conference.
say("Thanks for calling the conference line. Goodbye.");

A conference call application – in JavaScript! How easy is that?

But it gets even better!

Tropo also makes it super simple to record a conference call if your use case requires it. With just a few extra lines of code (and a small bit of server side logic) you can record conference calls.

Again, in JavaScript:

// Start recording the conference call.
startCallRecording("http://url-for-your-server/record.php", { format: "audio/mp3" });

// Welcome the caller to the conference.
say("Welcome to the conference line. Press the star key to exit.");

// Start the conference.
conference("1337", {
		terminator : "*",
		playTones : true
	});

// Play a message when the caller leaves the conference.
say("Thanks for calling the conference line. Goodbye.");

// Stop call recording.
stopCallRecording();

Using the Tropo startCallRecording() method, you can designate where your recorded audio file is sent and the format of the audio file. Saving the audio files on the server side can be done with a trivial amount of code.

For example, in PHP:

<?php

// Audio files saved to a parallel directory called 'recordings'

$target_path = 'recordings/' . $_FILES['filename']['name'];
move_uploaded_file($_FILES['filename']['tmp_name'], $target_path);

?>

With Tropo, it’s never been easier or more efficient to create powerful conference call applications in JavaScript, or any of the other languages support by the Tropo Scripting platform.

Happy conferencing!

Join Tropo at SuperConf Feb 25-26 Miami Beach

Wednesday, January 12th, 2011

Tropo is sponsoring SuperConf in Miami Beach February 25-26 2011.

SuperConf is brand new. SuperConf is where kick-ass new companies launch. SuperConf is where speakers blow your mind, 8 times in one day. SuperConf is the culmination of great speakers, awesome companies, amazing patrons & shots of patron.

SuperConf is launching 9 new companies in February with a single grand prize, as decided by the panel & audience at SuperConf, more than $25,000 in cash & prizes (details here).

Follow @Tropo on Twitter for chances to win free tickets to SuperConf 2011!

Video: Voxeo CTO RJ Auburn – “Hey man, can I get a clue?”

Wednesday, September 16th, 2009

Back in August at ClueCon in Chicago, Voxeo CTO RJ Auburn gave a talk about how the ways in which we develop voice applications have changed and about how Tropo.com was designed to help in that change. The video of that presentation is now available for viewing:

While they are somewhat visible in the video, RJ’s slides are also available from our Slideshare account:

We hope you enjoy the video and if you feel inspired to create some voice apps of your own using Tropo, please do head on over to Tropo.com and sign up for a free developer account.