Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #69728 > unrolled thread

Python streaming media server

Started byWesley <nispray@gmail.com>
First post2014-04-05 03:11 -0700
Last post2014-04-06 12:43 +0100
Articles 9 — 5 participants

Back to article view | Back to comp.lang.python


Contents

  Python streaming media server Wesley <nispray@gmail.com> - 2014-04-05 03:11 -0700
    Re: Python streaming media server Sturla Molden <sturla.molden@gmail.com> - 2014-04-05 17:38 +0000
      Re: Python streaming media server Wesley <nispray@gmail.com> - 2014-04-05 18:51 -0700
        Re: Python streaming media server Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-04-06 02:10 +0000
          Re: Python streaming media server Ben Finney <ben+python@benfinney.id.au> - 2014-04-06 12:41 +1000
        Re: Python streaming media server Sturla Molden <sturla.molden@gmail.com> - 2014-04-06 12:52 +0000
          Re: Python streaming media server Wesley <nispray@gmail.com> - 2014-04-06 20:32 -0700
    Re: Python streaming media server Wesley <nispray@gmail.com> - 2014-04-05 21:31 -0700
      Re: Python streaming media server Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-04-06 12:43 +0100

#69728 — Python streaming media server

FromWesley <nispray@gmail.com>
Date2014-04-05 03:11 -0700
SubjectPython streaming media server
Message-ID<11aa1097-e878-4b91-b117-4b44df246a98@googlegroups.com>
Hi,
  Anyone knows open source streaming media server written by Python?

I am trying to setup a streaming media server in python, wanna find an existing one and have a look.

Thanks.
Wesley

[toc] | [next] | [standalone]


#69732

FromSturla Molden <sturla.molden@gmail.com>
Date2014-04-05 17:38 +0000
Message-ID<mailman.8930.1396719547.18130.python-list@python.org>
In reply to#69728
Wesley <nispray@gmail.com> wrote:

>   Anyone knows open source streaming media server written by Python?
> 
> I am trying to setup a streaming media server in python, wanna find an
> existing one and have a look.

Not open source, but there is a famous closed-source one called YouTube.

[toc] | [prev] | [next] | [standalone]


#69734

FromWesley <nispray@gmail.com>
Date2014-04-05 18:51 -0700
Message-ID<0a4cc21b-3d8d-483b-b24f-8bd61da59c0e@googlegroups.com>
In reply to#69732
在 2014年4月6日星期日UTC+8上午1时38分57秒,Sturla Molden写道:
> Wesley <nispray@gmail.com> wrote:
> 
> 
> 
> >   Anyone knows open source streaming media server written by Python?
> 
> > 
> 
> > I am trying to setup a streaming media server in python, wanna find an
> 
> > existing one and have a look.
> 
> 
> 
> Not open source, but there is a famous closed-source one called YouTube.

Are you kidding?
I know youtube, but do you think we can use it setup our own streaming media server?

[toc] | [prev] | [next] | [standalone]


#69735

FromSteven D'Aprano <steve+comp.lang.python@pearwood.info>
Date2014-04-06 02:10 +0000
Message-ID<5340b77f$0$29993$c3e8da3$5496439d@news.astraweb.com>
In reply to#69734
On Sat, 05 Apr 2014 18:51:58 -0700, Wesley wrote:

> 在 2014年4月6日星期日UTC+8上午1时38分57秒,Sturla Molden写道:
>> Wesley <nispray@gmail.com> wrote:
>> 
>> >   Anyone knows open source streaming media server written by Python?
>> > 
>> > I am trying to setup a streaming media server in python, wanna find
>> > an existing one and have a look.
>> 
>> 
>> Not open source, but there is a famous closed-source one called
>> YouTube.
> 
> Are you kidding?
> I know youtube, but do you think we can use it setup our own streaming
> media server?

I'm sure if you have a few hundreds of million dollars, you could buy 
YouTube from Google. Otherwise, no. It is secret, proprietary software, 
not available to anyone else.

Speaking of Google, did you try this?

https://www.google.com.au/search?q=python+streaming+video

Does that help?

Unfortunately, Google customizes the search results depending on who you 
are and where you are, so you may not see what I see. But for me, the top 
link (after the paid ads) is for a Python video streaming server.



-- 
Steven D'Aprano
http://import-that.dreamwidth.org/

[toc] | [prev] | [next] | [standalone]


#69736

FromBen Finney <ben+python@benfinney.id.au>
Date2014-04-06 12:41 +1000
Message-ID<mailman.8931.1396752083.18130.python-list@python.org>
In reply to#69735
Steven D'Aprano <steve+comp.lang.python@pearwood.info> writes:

> Unfortunately, Google customizes the search results depending on who you 
> are and where you are, so you may not see what I see.

Which is one of many reasons to prefer a search engine that doesn't put
you in a search bubble like that.

DuckDuckGo returns search results impartially because they don't track
your search results:

   <URL:https://duckduckgo.com/?q=python+"streaming+media"+server>

-- 
 \       “I don't care to belong to a club that accepts people like me |
  `\                                        as members.” —Groucho Marx |
_o__)                                                                  |
Ben Finney

[toc] | [prev] | [next] | [standalone]


#69766

FromSturla Molden <sturla.molden@gmail.com>
Date2014-04-06 12:52 +0000
Message-ID<mailman.8952.1396788771.18130.python-list@python.org>
In reply to#69734
Wesley <nispray@gmail.com> wrote:

>> Not open source, but there is a famous closed-source one called YouTube.
> 
> Are you kidding?
> I know youtube, but do you think we can use it setup our own streaming media server?

Obviously not. 

Before YouTube was bought by Google, it was common knowledge that it ran on
Stackless Python. So a streaming media server on Python is absolutely
possible. But no, I don't know of one you can set up and use on your own.

You can make a highly scalable server with PyZMQ and Tornado or Twisted.
NumPy is great for storing binary data like media streams. HDF5 (PyTables
or h5py) might be a better database than some SQL server, as it is capable
of highly scalable parallel binary i/o.  

Sturla

[toc] | [prev] | [next] | [standalone]


#69794

FromWesley <nispray@gmail.com>
Date2014-04-06 20:32 -0700
Message-ID<0d4cf64b-8b62-4fb7-b4b9-e64c359fa80a@googlegroups.com>
In reply to#69766
在 2014年4月6日星期日UTC+8下午8时52分37秒,Sturla Molden写道:
> Wesley <nispray@gmail.com> wrote:
> 
> 
> 
> >> Not open source, but there is a famous closed-source one called YouTube.
> 
> > 
> 
> > Are you kidding?
> 
> > I know youtube, but do you think we can use it setup our own streaming media server?
> 
> 
> 
> Obviously not. 
> 
> 
> 
> Before YouTube was bought by Google, it was common knowledge that it ran on
> 
> Stackless Python. So a streaming media server on Python is absolutely
> 
> possible. But no, I don't know of one you can set up and use on your own.
> 
> 
> 
> You can make a highly scalable server with PyZMQ and Tornado or Twisted.
> 
> NumPy is great for storing binary data like media streams. HDF5 (PyTables
> 
> or h5py) might be a better database than some SQL server, as it is capable
> 
> of highly scalable parallel binary i/o.  
> 
> 
> 
> Sturla

Thanks, Sturla.
Umm,I think we can setup one using the technique skills you mentioned above:-)
But that will need a lot work to do I think.

I am looking at an opensource one named Flumotion.

Wesley

[toc] | [prev] | [next] | [standalone]


#69740

FromWesley <nispray@gmail.com>
Date2014-04-05 21:31 -0700
Message-ID<ff55e697-6fca-4b5a-a473-9fe8d62d1ab0@googlegroups.com>
In reply to#69728
在 2014年4月5日星期六UTC+8下午6时11分02秒,Wesley写道:
> Hi,
> 
>   Anyone knows open source streaming media server written by Python?
> 
> 
> 
> I am trying to setup a streaming media server in python, wanna find an existing one and have a look.
> 
> 
> 
> Thanks.
> 
> Wesley

After a lot google work, I am looking at Flumotion.
Need to check the streaming mode and file formats it support.

Wesley

[toc] | [prev] | [next] | [standalone]


#69763

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2014-04-06 12:43 +0100
Message-ID<mailman.8949.1396784650.18130.python-list@python.org>
In reply to#69740
On 06/04/2014 05:31, Wesley wrote:
> 在 2014年4月5日星期六UTC+8下午6时11分02秒,Wesley写道:
>> Hi,
>>
>>    Anyone knows open source streaming media server written by Python?
>>
>>
>>
>> I am trying to setup a streaming media server in python, wanna find an existing one and have a look.
>>
>>
>>
>> Thanks.
>>
>> Wesley
>
> After a lot google work, I am looking at Flumotion.
> Need to check the streaming mode and file formats it support.
>
> Wesley
>

Would you please use the mailing list 
https://mail.python.org/mailman/listinfo/python-list or read and action 
this https://wiki.python.org/moin/GoogleGroupsPython to prevent us 
seeing double line spacing and single line paragraphs, thanks.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web