Archive

Posts Tagged ‘streams’

Rtmp Live Streams Encrypted

January 6th, 2012 Comments off

I have ec2 wowza Instance in amazon or Live Streaming my clients,
I need:

* live RTMP Streams encrypted when broadcasting for JW Player and flash Media Player

Every time you turn off amazon instance you lose your data on server, I would have to upload password protect every time.

* Need configured and how to upload it for either putty or in aws console when turn instance back on

Need working knowledge of ec2 and password protecting. Or if you have another solution I’m willing to di…

Android Internet Radio App

November 26th, 2011 Comments off

I need an android app made that can play internet streams really well on 3g and 4g networks. In order to make this app though i want the programer to extract streams from two different websites and make it accessible from the phone fast and easy. No lavish graphic design is needed just the necessary buttons and a way to distinguish the two streams.

the first stream is the free stream from
http://zipfm.net/ziplivev2/

and the other is from
http://www.pondends.net/

you can use the log…

User Status Streams With Status History

August 23rd, 2011 Comments off

I need previous history of status posts of a user to show on a separate page like a status stream, this being viable to other members. This page needs to show a limit of 30 results, each status update needs to show date in the format of seconds, to minutes, to hours then showing the date in which the update was posted like how the homepage statuses are.

Anything a user posts right now shows only once until the user updates their current status again.

Posting Live Video Streams

November 30th, 2009 Comments off

Hi

I am looking for someone to sign up to my site www.sportsviewer .tv and post live streams from ustream and justin.tv,

job intails..

1. sign up to site
2. find live sports and embedded streams from justin.tv ustream e.c.t and putting them on my site, and then putting them in the right groups,,, football, baseball, basketball, boxing, e.c.t.
3.make sure that it has right images for stream, eg.and right text eg. boxing live online..
4.making sure that streams work and remove them after days out,
5.we will be adding a request form so people can tell us what they want to watch so you will be putting requests on too..
6.rate and leave comment about the stream as you doing them so i looks like more people on,,by click the stars above the stream,,
7. weeks ends speaking on live chatroon oon right hand side of the site to make sure no one promoting there site also making chat,,lol

pleaae note i need more then just one person so we can make this a regular thing you could benfit from lots more,,

speak to me on live chat on site if you want,,
salary to be talked about,,

happy bidding

here how need doing

http://www.sportsviewer.tv/howtoembeded

Posting Live Streams

November 29th, 2009 Comments off

Hi

I am looking for someone to sign up to my site www.sportsviewer .tv and post live streams from ustream and justin.tv,

job intails..

1. sign up to site
2. find live sports and embedded streams from justin.tv ustream e.c.t and putting them on my site, and then putting them in the right groups,,, football, baseball, basketball, boxing, e.c.t.
3.make sure that it has right images for stream, eg.and right text eg. boxing live online..
4.making sure that streams work and remove them after days out,
5.we will be adding a request form so people can tell us what they want to watch so you will be putting requests on too..
6.rate and leave comment about the stream as you doing them so i looks like more people on,,by click the stars above the stream,,
7. weeks ends speaking on live chatroon oon right hand side of the site to make sure no one promoting there site also making chat,,lol

pleaae note i need more then just one person so we can make this a regular thing you could benfit from lots more,,

speak to me on live chat on site if you want,,
salary to be talked about,,

happy bidding

Categories: Programming Tags: , , , , , ,

Red5video Streaming Java/flash

September 4th, 2009 Comments off

We need a modification to our red5 java server application

The idea is that a user (or dj) would go to a webpage,
on the page is a flash program which tries to connect to the webcam and sound on the users computer.
the user then streams the video and audio to the server.
the server then streams back to a webpage, or device which can be viewed by as many people as the server can handle.

currently the logic is:

1 input stream = 1 output stream, 3 input streams = 3 output streams

we need to add the ability to do:

x input streams = 1 output stream

We are using red5 server for streaming which we have installed on windows 2008 server. we are streaming to and from red5 using the videowhisper application: http://www.videowhisper.com/?p=Live+Streaming

Basically we are able to create client applications to stream to/from red5 server over RTMP (a streaming protocol) in flash as its quite simple with a bit of flash actionscript knowledge.

However on the server-side, we need to be able to control simultaneous connections/streams from the client application in a dynamic playlist form,
configurable through something like xml or mysql and then combine them into specific broadcast streams.
We would also need the ability to insert flv’s (flash videos) into the dynamic playlist, ability to schedule playlist items (configurable by something like a datetime attribute in the xml or mysql field),
and handle things like automatic switching to the next item in the playlist when a client disconnects (client being the person streaming to the server).

This logic would result in us having similar behavior to windows media server in that, you have a client viewing a specific continuous stream, which could be multiple v

Java Library For Flash Audio A

May 1st, 2009 Comments off

Background:
———–

Adobe is opening their proprietary protocols, and they have published the specification of SWF and FLV/F4V formats.

SWF:
http://www.adobe.com/devnet/swf/
http://www.adobe.com/devnet/swf/pdf/swf_file_format_spec_v10.pdf

FLV / F4V:
http://www.adobe.com/devnet/flv/
http://www.adobe.com/devnet/flv/pdf/video_file_format_spec_v10.pdf

AMF:
http://opensource.adobe.com/wiki/display/blazeds/Developer+Documentation

MCDP:
http://www.adobe.com/devnet/mobile_content_delivery/
http://www.adobe.com/devnet/mobile_content_delivery/mcdp.pdf

Task:
—–

(1) Create a Java library which supports Flash media content by
- opening of local files
- retrieval of remote streams
- parsing of the file & stream formats
- extracting the audio and video data

Note 1:
This project does not aim to implement a Flash player. The goal is merely to open and parse Flash content (both locally and streaming), and extract the audio and video data.

(2) Create the plugins required for playback of the decoded audio and video content within the JMF framework.

Note 2:
This project does not aim to implement the decoders for the extracted audio and video data. The goal is
- to feed the extracted raw data streams into existing JMF components (or into respective interfaces if the decoders do not yet exist)
- to store the extracted raw data streams into files so that they can be verified by an external application (like VLC or MPlayer).

Note 3:
Review and re-use code from existing OS projects:
http://en.wikipedia.org/wiki/Flash_Video
(see the bottom of the page)
http://en.wikipedia.org/wiki/Red5

Deliverables:
————-

(1) Before you start coding, you should deliver a complete analysis of
- file formats
- streaming formats
- audio and video formats
- capabilities and potential re-use of existing OS software

(2) Based on your analysis, you should specify supported features of the library (media formats, technical features like HTTP and RTMP streams, functional aspects like progressive download and seek)

(3) The implementation should be completed with a set of test cases which would demonstrate the support of various popular online video sites (we would discuss the details offline).

Applicants:
———–

I am looking for an individual developer, strictly no companies please!

You should be proficient Java (and C would be a plus for upcoming projects). Please send a PM and explain why you are good at this job, and what your expertise in Java is.

Vectors And I/o Streams

April 3rd, 2009 Comments off

xercise 2 uses a modified form of the solution to exercise 1.
Vectors and i/o streams exercise 1
Practice with files and string streams

Complete the program ~cs9f/lib/p3.1.cpp so that the program repeatedly recognizes and processes the commands from the following list.

update word number
list names
list quantities
batch file-name
quit

Each legal command must appear on a single line, and have the correct number and type of arguments. The update command must be followed by a word

Categories: C/C++ Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Listing Page Of Radio Streams

March 31st, 2009 Comments off

I would like to create a PHP page that is similar to this – http://radiotime.com/Search.aspx?CategoryType=2&CategoryId=101254

It should have the ability to add, delete or edit new listings. I would like to page to function just like the link above. This is to be done for one county only. We are not looking to recreate the Radiotimes website. Again I only want to do this for the Jamaica links and nothing else.

I am not looking for you to create a media/radio player. I am looking to use the default radio player for each radio station. For example – If the radio station can use Real Media or Windows Media or WinAmp that the appropriate player from the users PC should pop-up. All this page is using the stream from the Radio stations website and the player on the users PC.

Simple Excel Sheet

March 19th, 2009 No comments

DESIGN NOTES:

1. Columns c and d can be deleted as long as columns H and P are calculated correctly by dividing by 30.

2. There should be 30 rows 1 for each Expense category, plus the header and footer row.

3. The Total for Row F is a combination of Totals from
Row N and Totals from Row F.

Overview: The Idea behind this is that the user inputs Monthly Living Expenses, and Dream Lifestyle Expenses, as well as Monthly Income Streams.

Monthly income streams from both sides (BLUE and YELLOW) will effect monthly living expenses first (lowest dollar amount to highest), and then Dream Lifestyle Living Expenses (lowest dollar amount to highest).

Both the yellow and Blue Income streams will go FIRST toward meeting, and then exceeding the Yellow monthly Living Expenses side.

After the monthly living expenses side (yellow side) has been covered and exceeded by a combination of both or either of the Yellow or Blue income streams, then the income streams totals will be directed to the Blue Side Dream Lifestyle expenses.

If the income streams cover a expense (starting at the lowest dollar amount Living Expense monthly Yellow side), then the category field in column B would turn GREEN).

If the category is reached by the income streams, but not quite covered, then the field category would turn (YELLOW).

If the category is not even hit by the income streams, then the field category would turn (RED).

Once the user inputs the Living Expense Text Column and monthly Dollar amount, as well as the Dream Lifestyle Text column and Dollar amount, the GREEN [Click Here To Crush Your Job!] button is clicked, and the function would calculate all the rows and columns.

The exact calculations would also apply to the Blue Side Dream Lifestyle, after the Yellow side Monthly living expenses have been met.

It would be nice if a sound or visual effect could be added ..like a cash register adding up, and or Flashing [GREEN BUTTON].

Bear