|
List Info
Thread: Re: Help with Red5: Video streaming questions.
|
|
| Re: Help with Red5: Video streaming
questions. |
  United States |
2008-03-12 01:41:59 |
|
Ok. You mentioned there may be some developers on the server side familiar with this right? Do you know anyone who i can contact to get some pointers on how to get started?
Thanks, -Vinay
----- Original Message ---- From: Dominick Accattato <daccattato gmail.com> To: red5 osflash.org Sent: Wednesday, 12 March, 2008 2:37:16 AM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
No, you don't need anyone's permission to move forward. I'm only pointing out that if you do end up changing any of the code that is part of Red5 then you have to ask the project if it
should be integrated back in. It should also be noted that any code that doesn't change the core code does not have to be donated back. I wouldn't get to worried about the license, just be aware of it.On Mar 12, 2008, at 2:03 AM, Vinay K. Perneti wrote: If the red5 community wants the new code, I would be more than glad to give
it back. Should i contact the red5devs mailing list or is there someone/ot her lists that i should contact to get information on how to proceed further?
Thanks, -Vinay
----- Original Message ---- From: Dominick Accattato <gmail.com" target="_blank" href="mailto:daccattato gmail.com">daccattato gmail.com> To: osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org Sent: Wednesday, 12 March, 2008 1:56:08 AM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
I don't know who's developing this, but yes this will take more than a couple of days. There are developers who are familiar with the server and could
probably develop that functionality in much less time. Regardless, it doesn't seem like a 2 day project. Also, please remember that if you change any of the core code, it must be donated back to the open source Red5 project. Here is a good explanation I wrote up on the Jira about LGPL (http://jira.red5.org/confluence/display/docs/Red5+License+(LGPL)
On Mar 11, 2008, at 11:38 PM, Vinay K. Perneti wrote: Oh! I really need to get this working, at least as a proof of concept. Would it be possible for you to point me to some resources that could get me started? W hen you talk about custom development, Is the work involved too much to be done in a couple of days?
Appreciate all the help,
Thanks, -Vinay
----- Original Message ---- From: Dominick Accattato <gmail.com" target="_blank" href="mailto:daccattato gmail.com">daccattato gmail.com> To: osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org Sent: Tuesday, 11 March, 2008 11:05:32 PM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
no, the server cannot mix and match (by default) the video and by mix and match I think you mean sending video tags from one file and then starting to send tags from another file. This would require custom development. On Mar 11, 2008, at 10:42 PM, Vinay K. Perneti wrote: Lets say I do have 3 copies of the same video at 3 different qualities and I also have broken each copy into x number of pieces. Is it possible for the server to mix and match the pieces of different quality and stream it to the client dynamicall y?
I'm not sure waht you mean when you talk about making the client subscribe to a single video and seeking to different parts would solve the problem?
Thanks, -Vinay
----- Original Message ---- From: Dominick Accattato <gmail.com" target="_blank" href="mailto:daccattato gmail.com">daccattato gmail.com> To: osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org Sent: Tuesday, 11 March, 2008 9:34:31 PM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
You can have the client subscribe to the same file and seek to different parts. However, to have different quality video you either need to pre-encode your video at different quality bit-rates or use an encoding solution such as FFMpeg.On Mar 11, 2008, at 8:36 PM, Vinay K. Perneti wrote: Hi Chris, I did send the mail to osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org but did not receive any response. Perhaps i didn't put forth my question properly.
Here is what i'm trying to do in 1 line. Adaptively (and
dynamically) change the quality of a video that is being streamed to a client.
From the ofla_demo, i've noticed that when a client requests for a file the red5 replies with the entire file. Is it possible to change this such that the server can send different pieces (maybe of different quality) without changing anything on the client side. (Ideally, the client should not know that its receiving data from multiple files.)
Thanks, -Vinay
----- Original Message ---- From: Chris Allen <gmail.com" target="_blank" href="mailto:mrchrisallen gmail.com">mrchrisallen gmail.com> To: osflash.org" target="_blank" href="mailto:red5devs osflash.org">red5devs osflash.org Cc: osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org Sent: Monday, 10 March, 2008 7:42:10 PM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
Vinay,
You might want to post this question on the main Red5 list:
This list (red5devs)
that you sent to is for the developers of Red5 itself. Not as many people subscribe this this list, so you probably will have more responses on the other.
-Chris
On Mar 8, 2008, at 9:04 PM, Vinay K. Perneti wrote: Any feedback? suggestions?
Thanks, -Vinay
----- Original Message ---- Sent: Saturday, 8 March, 2008 3:10:49 AM Subject: [Red5] Help with Red5: Video streaming questions.
Hi All,
I'm new to red5 and flash programming as such. I'm currently working on a project to stream videos adaptively based on the clients bandwidth. By Adaptive streaming what i mean is that, when a client requests for a
video, a medium quality video is presented. If there is a way to check for the clients bandwidth continuously, it should be theoretically possible to change the quality accordingly as the video is being streamed (higher quality if the bandwidth has improved and lower quality if the bandwidth has decreased).
The two approaches i was thinking about were.. 1. Switch between two files of different qualitywhile servicing a client who requested for a single video. (The idea isto store 3 copies of a video at 3 different qualities and switchbetween the qualities based on the client bandwidth). Is it possible to do that with the current implementation of red5? (Switch to a different video source based on the client bandwidth?)
2. An alternate approach would be to drop frames while streaming thevideo if the bandwidth of the client has gone down. I
was not very sureas to how this could be achieved. I would really appreciate it, Ifsomeone could point me to a tutorial/documentation which could help mefigure this out.
I got red5 installed and running on eclipse. I spent sometime looking at the demo's that come with Red5. I could not figure out much as i'm not very familiar with any flash/action script experience (more comfortable with C. )
It would really help if someone could comment on the above two approaches and point me to any sources that could help me solve the problem.
Thanks a lot, -Vinay
Chat on a cool, new interface. No download required. Go to http://in.messenger.yahoo.com/webmessengerpromo.php
_______________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Meet people who discuss and share your passions. Go to http://in.promos.yahoo.com/groups
_______________________________________________ Red5devs mailing list osflash.org" target="_blank" href="mailto:Red5devs osflash.org">Red5devs osflash.org http://osflash.org/mailman/listinfo/red5devs_osflash.org
Bring your gang together - do your thing. Start your group.___ ____________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Now you can chat without downloadin g messenger. Click here to know how._______________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Now you can chat without downloadin g messenger. Click here to know how._______________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Share files, take polls, and discuss your passions - all under one roof. Click here.____ ___________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Meet people who discuss and share your passions. Join them now. |
| Re: Help with Red5: Video streaming
questions. |
  United States |
2008-03-12 15:13:37 |
|
There are lots of people on the list who can give pointers on this, but when I mentioned professional consulting, I was referring to the fact that my group Infrared5 (www.infrared5.com) focuses on this type of development. It sounds more like your just trying to figure out this type of development for yourself and this mailing list is the perfect place for you to get pointers. good luckOn Mar 12, 2008, at 2:41 AM, Vinay K. Perneti wrote: Ok. You mentioned there may be some developers on the server side familiar with this right? Do you know anyone who i can contact to get some pointers on how to get started?
Thanks, -Vinay
----- Original Message ---- From: Dominick Accattato < daccattato gmail.com">daccattato gmail.com> To: red5 osflash.org">red5 osflash.org Sent: Wednesday, 12 March, 2008 2:37:16 AM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
No, you don't need anyone's permission to move forward. I'm only pointing out that if you do end up changing any of the code that is part of Red5 then you have to ask the project if it should be integrated back in. It should also be noted that any code that doesn't change the core code does not have to be donated back. I wouldn't get to worried about the license, just be aware of it.On Mar 12, 2008, at 2:03 AM, Vinay K. Perneti wrote: If the red5 community wants the new code, I would be more than glad to give it back. Should i contact the red5devs mailing list or is there someone/ot her lists that i should contact to get information on how to proceed further?
Thanks, -Vinay
----- Original Message ---- From: Dominick Accattato <gmail.com" target="_blank" href="mailto:daccattato gmail.com">daccattato gmail.com> To: osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org Sent: Wednesday, 12 March, 2008 1:56:08 AM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
I don't know who's developing this, but yes this will take more than a couple of days. There are developers who are familiar with the server and could probably develop that functionality in much less time. Regardless, it doesn't seem like a 2 day project. Also, please remember that if you change any of the core code, it must be donated back to the open source Red5 project. Here is a good explanation I wrote up on the Jira about LGPL (http://jira.red5.org/confluence/display/docs/Red5+License+(LGPL)
On Mar 11, 2008, at 11:38 PM, Vinay K. Perneti wrote: Oh! I really need to get this working, at least as a proof of concept. Would it be possible for you to point me to some resources that could get me started? W hen you talk about custom development, Is the work involved too much to be done in a couple of days?
Appreciate all the help,
Thanks, -Vinay
----- Original Message ---- From: Dominick Accattato <gmail.com" target="_blank" href="mailto:daccattato gmail.com">daccattato gmail.com> To: osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org Sent: Tuesday, 11 March, 2008 11:05:32 PM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
no, the server cannot mix and match (by default) the video and by mix and match I think you mean sending video tags from one file and then starting to send tags from another file. This would require custom development. On Mar 11, 2008, at 10:42 PM, Vinay K. Perneti wrote: Lets say I do have 3 copies of the same video at 3 different qualities and I also have broken each copy into x number of pieces. Is it possible for the server to mix and match the pieces of different quality and stream it to the client dynamicall y?
I'm not sure waht you mean when you talk about making the client subscribe to a single video and seeking to different parts would solve the problem?
Thanks, -Vinay
----- Original Message ---- From: Dominick Accattato <gmail.com" target="_blank" href="mailto:daccattato gmail.com">daccattato gmail.com> To: osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org Sent: Tuesday, 11 March, 2008 9:34:31 PM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
You can have the client subscribe to the same file and seek to different parts. However, to have different quality video you either need to pre-encode your video at different quality bit-rates or use an encoding solution such as FFMpeg.On Mar 11, 2008, at 8:36 PM, Vinay K. Perneti wrote: Hi Chris, I did send the mail to osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org but did not receive any response. Perhaps i didn't put forth my question properly.
Here is what i'm trying to do in 1 line. Adaptively (and dynamically) change the quality of a video that is being streamed to a client.
From the ofla_demo, i've noticed that when a client requests for a file the red5 replies with the entire file. Is it possible to change this such that the server can send different pieces (maybe of different quality) without changing anything on the client side. (Ideally, the client should not know that its receiving data from multiple files.)
Thanks, -Vinay
----- Original Message ---- From: Chris Allen <gmail.com" target="_blank" href="mailto:mrchrisallen gmail.com">mrchrisallen gmail.com> To: osflash.org" target="_blank" href="mailto:red5devs osflash.org">red5devs osflash.org Cc: osflash.org" target="_blank" href="mailto:red5 osflash.org">red5 osflash.org Sent: Monday, 10 March, 2008 7:42:10 PM Subject: Re: [Red5] [Red5devs] Help with Red5: Video streaming questions.
Vinay,
You might want to post this question on the main Red5 list:
This list (red5devs) that you sent to is for the developers of Red5 itself. Not as many people subscribe this this list, so you probably will have more responses on the other.
-Chris
On Mar 8, 2008, at 9:04 PM, Vinay K. Perneti wrote: Any feedback? suggestions?
Thanks, -Vinay
----- Original Message ---- Sent: Saturday, 8 March, 2008 3:10:49 AM Subject: [Red5] Help with Red5: Video streaming questions.
Hi All,
I'm new to red5 and flash programming as such. I'm currently working on a project to stream videos adaptively based on the clients bandwidth. By Adaptive streaming what i mean is that, when a client requests for a video, a medium quality video is presented. If there is a way to check for the clients bandwidth continuously, it should be theoretically possible to change the quality accordingly as the video is being streamed (higher quality if the bandwidth has improved and lower quality if the bandwidth has decreased).
The two approaches i was thinking about were.. 1. Switch between two files of different qualitywhile servicing a client who requested for a single video. (The idea isto store 3 copies of a video at 3 different qualities and switchbetween the qualities based on the client bandwidth). Is it possible to do that with the current implementation of red5? (Switch to a different video source based on the client bandwidth?)
2. An alternate approach would be to drop frames while streaming thevideo if the bandwidth of the client has gone down. I was not very sureas to how this could be achieved. I would really appreciate it, Ifsomeone could point me to a tutorial/documentation which could help mefigure this out.
I got red5 installed and running on eclipse. I spent sometime looking at the demo's that come with Red5. I could not figure out much as i'm not very familiar with any flash/action script experience (more comfortable with C. )
It would really help if someone could comment on the above two approaches and point me to any sources that could help me solve the problem.
Thanks a lot, -Vinay
Chat on a cool, new interface. No download required. Go to http://in.messenger.yahoo.com/webmessengerpromo.php
_______________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Meet people who discuss and share your passions. Go to http://in.promos.yahoo.com/groups
_______________________________________________ Red5devs mailing list osflash.org" target="_blank" href="mailto:Red5devs osflash.org">Red5devs osflash.org http://osflash.org/mailman/listinfo/red5devs_osflash.org
Bring your gang together - do your thing. Start your group.___ ____________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Now you can chat without downloadin g messenger. Click here to know how._______________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Now you can chat without downloadin g messenger. Click here to know how._______________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Share files, take polls, and discuss your passions - all under one roof. Click here.____ ___________________________________________ Red5 mailing list osflash.org" target="_blank" href="mailto:Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
Meet people who discuss and share your passions. Join them now._____ __________________________________________ Red5 mailing list Red5 osflash.org">Red5 osflash.org http://osflash.org/mailman/listinfo/red5_osflash.org
|
[1-2]
|
|