Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 2 of 5

This is a python implementation of the Flash RTMP server with minimal support needed for real-time streaming and recording using AMF0. Advanced application service such as shared object or web API are outside the scope. The goal is to use existing protocols and tools such as web servers as much as ... [More] possible (API, progressive download). And only use this RTMP server when one needs to interoperate with Flash Player. Another objective is to keep the size small so that one can use it locally on a client machine instead of hosting on a remote server. The project was started and most of the work was done in 2007. More recently I wrote example test application and finished the server part to make it complete. If you are interested in contributing, feel free to send me a patch with your changes. If you plan to use this software in your project or want to contribute significantly in this project or its features, feel free to send me a note to mamtasingh05@gmail.com. I look forward to hearing from you! There are other open-source RTMP servers available such as rtmpy.org and osflash.org/red5. My implementation is different because it does not use the complex Twisted library as in rtmpy.org and it is pure Python based couple of files instead of hundreds of Java files of Red5. I did use AMF parsing from rtmpy.org though. Secondly my project is a much simpler version of a full Red5 server and useful only for dealing with real-time media and doesn't implement shared object or web server style applications. Quick StartThe software requires Python 2.5. After uncompressing the download or checking out the sources from SVN, run the server file with -h option to see all the command line options. bash$ tar -zxvf rtmplite-2.0.tgz bash$ cd rtmplite bash$ python rtmp -hTo start the server with default options and debug trace, run the following: bash$ python rtmp -dA test client is available in testClient directory, and can be compiled using Flex Builder. I have already put the compiled SWF file in the bin-debug directory. Open your browser and then open the testClient.html file in your browser. The user interface will allow you to connect to the server to test the connection. You can also test streams by clicking on publish or play buttons. See the README file for more information New Features/Other ProjectsFlash to SIP: Starting with version 3.0 onwards, the software includes a SIP-RTMP gateway module as well. The siprtmp project page describes the SIP-RTMP module in detail. The project depends on the SIP stack from the "39 peers" p2p-sip project. This module allows you to make Flash to SIP calls and vice-versa. With appropriate VoIP account you can also make Flash to phone or web to phone calls. Please read the FAQ Videocity: The Internet Videocity Project is another project that uses rtmplite as an RTMP server. The Videocity project aims at providing open source and free software tools to developers and system engineers to support enterprise and consumer video conferencing using ubiquitous web based Flash Player platform. The video communication is abstracted out as a city, where you own a home with several rooms, decorate your rooms with your favorite photos and videos, invite your friends and family to visit a room by handing out visiting card, or visit other people's rooms to video chat with them or to leave a video message if they are not in their home. User Comments(Aug 2009): "I tried your RTMP-SIP gateway this afternoon. It's pretty neat. Awesome. Great job. I like it more than the Red5 project. It's a very good idea to implement it with python and it's lightweight and better integrate with ..." (Nov 2009): "I was looking for a lightweight rtmp server and tried out your server at http://code.google.com/p/siprtmp/ and it seems to have been running quite well. Hats off to you. ... Thanks for the great lightweight server." If you have any feedback, criticism or comment on siprtmp or rtmplite, feel free to send them to me. [Less]

0
 
  0 reviews  |  1 user  |  10,622 lines of code  |  2 current contributors  |  Analyzed about 5 hours ago
 
 

The Yard is the old name for the Xuggle project. Some old code lives here, but all Java code has moved to Xuggle. The Flash actionscript libraries still live here, but will move to Xuggle at some point.

5.0
 
  0 reviews  |  1 user  |  28,492 lines of code  |  0 current contributors  |  Analyzed almost 2 years ago
 
 

Flex/Flash Remoting, Flex Data Services and real-time messaging functionality for the .NET framework Features Flex, Flash Remoting (RPC), Flex AMF Polling Flex Messaging Flex Data Services (partial) Supports AMF0, AMF3 and RTMP, RTMPT protocols Service Browser Template based code generator ... [More] (ASP.NET like syntax) Real-time Messaging, Remote SharedObject support, Video streaming MSMQ integration Easily integrate rich Internet applications with .NET backend Easily integrate with Adobe Integrated Runtime (Adobe AIR™) Ajax Integration .NET and Silverlight client library [Less]

0
 
  0 reviews  |  1 user  |  168,780 lines of code  |  1 current contributor  |  Analyzed about 2 hours ago
 
 

Plugins for the Flowplayer video player. Plugins can be used to extend the player's behavior add widgets and gadgets and such to be shown in the player canvas connect to different streaming servers and CDNs other kinds of uses that are difficult to guess in advance! Plugins can be positioned ... [More] and moved around using JavaScript. Please see more details on the Flowplayer site. [Less]

0
 
  0 reviews  |  1 user  |  155,200 lines of code  |  3 current contributors  |  Analyzed about 22 hours ago
 
 

AsDoclet can be used to generate actionscript files out of java sources. Such a tool is essentially useful for RIA and Client/Server applications where value objects are transmitted between server and client as serialized data that should be deserializable on both ends again.

5.0
 
  0 reviews  |  1 user  |  3,123 lines of code  |  0 current contributors  |  Analyzed 25 days ago
 
 

An rtmp/ daap proxy: expose on-demand flash radio as an iTunes shared library. For purposes of demonstration I'm exposing BBC national radio. This is My First Erlang - be gentle :-)

0
 
  0 reviews  |  0 users  |  2,565 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 

perlRTMPperlで書かれたRTMPサーバ。 対応フォーマット MPEG2-TS (.ts) MP4 (.mp4) 『24時間ワンセグ野郎』(.ts & .idx) どうしてperl?自由に使える言語がperlくらいしかなかった。 rubyで出来るならperlでも出来るんじゃないか、と。 ... [More] どうしてMPEG2-TS?『24時間ワンセグ野郎』に触発されて24時間ワンセグ録画サーバを作った。ただしLinuxで。 Windowsから視聴するためにストリーミング(もしくはプログレッシブダウンロード)しようと思うとどうしてもMP4に変換する必要があり時間がかかる。 また、MP4に変換する際、映像と音声を分離してしまうとVFRな局が激しく音ズレしてしまい、それを防ごうとタイムコードの抽出や埋め込みを行うとさらに時間がかかる。 映像と音声を同時に送信するストリーミングなら音ズレの心配はないので、あとはMPEG2-TSが直接扱えるRTMPサーバがあればいいと思った。 姉妹サイトOneSeg24 for Linux http://code.google.com/p/oneseg24/ 参考RubyIZUMI http://code.google.com/p/rubyizumi/ 24時間ワンセグ野郎 http://mobilehackerz.jp/contents/OneSeg24 【UOT-100】24時間ワンセグ野郎 Part03【LOG-J200】 http://pc11.2ch.net/test/read.cgi/avi/1232374302/ [Less]

0
 
  0 reviews  |  0 users  |  3,310 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

zlchat is the next generation of web conferencing software that enables professionals to instantly communicate and collaborate through easy-to-use, easy-to-access online personal meeting rooms. it breaks down the technology barriers of traditional web conferencing by providing real-world ... [More] , interactive online personal meeting rooms to business professionals. 1.Instantly communicate and collaborate through always-on, hassle-free online personal meeting rooms. 2.Save time and money and accelerate productivity. 3.Reduce mistakes and misunderstandings through collaborative problem-solving in real time. 4.Improve the experience of online meetings through essential collaboration tools, including one-button screen sharing, video,powerpoint, and whiteboarding. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 4 days ago
 
 

Check the official Wiidiaplayer blog: http://wiidiaplayer.wordpress.com/ This page will house the sourcecode, manuals (as soon as we get them) and track issues.

0
 
  0 reviews  |  0 users  |  1,755 lines of code  |  0 current contributors  |  Analyzed about 14 hours ago
 
 

a c++ implementation of the red5 RTMP server, by Yun@openred5

0
 
  0 reviews  |  0 users  |  539,729 lines of code  |  0 current contributors  |  Analyzed about 21 hours ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.