Posts

Showing posts from May, 2014

Use Trello to organize yourself

Image
Trello is a collaboration tool that can be used to manage organizations and the projects within. Trello was made by Fog Creek Software in New York.  It has been very useful for both small and bigger organizations. Registration in Trello is not only easy but also free. It has got clean interface and is very easy to use. Its also available in Android , iPhone, iPad, Windows 8 and therefore you can use it on the go wherever you are. Its very easy to learn and get started. It works as a very good todo list and also its works as a lesson planner, community bulletin. One can assign task to members, add dates, use different labels. Drag and drop makes it even easy to move the cards. The calendar app and voting app (mostly used to gather opinions )  makes it even more effective. It can be used to discuss on any topic, attach files along with in the discussion and more. It just gives you a one shot glance of all what you have to do or are discussing. Every progress can be  just see

Downloading Live Stream Videos

Image
RTMPDUMP is a command line utility for RTMP streams.  Its main purpose is to connect to a RTMP server, capture the stream and save it into  a file. It supports all forms of rtmp, viz: rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps:// . Installation of rtmpdump installs: rtmpdump, rtmpsrv, rtmpsuck and rtmpgw. But here in this post, we are going to discuss on the how to of rtmpdump. I am in my ubuntu 12.04 and to install rtmpdump, we use the following command: $ sudo apt-get install rtmpdump This should install rtmpdump. Now to capture stream we use the command as follows: $ rtmpdump -r rtmp://example.com/path/to/video -o rtmp.mp4 -r is for the stream to capture and -o is for the name of output file to which the sream will be saved. More details on the usage of rtmpdump can be found by the command: $ man rtmpdump