Web App #1 - A Facebook App
Posted in Facebook, php on November 23rd, 2009 by helloworlder – Be the first to commentThis was my first Facebook app and can be found at http://apps.facebook.com/try-to-pronounce-it
What the app does it let you upload pronunciations of phrases in a foreign language and share it with others. I think the fatal flaw of this app would have to be that users have to upload WAV files instead of any format they want. This opens up a lot of issues with usability. For example, the windows sound recorder does not by default save the recorded sounds as WAVs, and since WAVs are uncompressed they are large. In addition, streaming WAVs in the browser is awkward - whereas with MP3 files I could just use a SWF player to stream the files in a nice way.
In fact, at once point I had successfully implemented the FFmpeg library to allow the user to upload almost any file type they want, and the app would automatically convert that file to MP3. Also, since the files were all in MP3 format, I could stream it in a nice SWF player. Unfortunately I discovered that the MP3 (and other codecs) were patented and the usage of them wasn’t actually legal. Pesky software patents …

