Browse Source

add my email address to my copyright lines..

update the README with some basic info..

[git-p4: depot-paths = "//depot/": change = 736]
replace/1500ef70ea5fed7a744cfb90f6c0d8473aec3d07
John-Mark Gurney 19 years ago
parent
commit
cfeac9c3cb
4 changed files with 36 additions and 8 deletions
  1. +1
    -1
      ContentDirectory.py
  2. +33
    -5
      README
  3. +1
    -1
      SSDP.py
  4. +1
    -1
      pymediaserv

+ 1
- 1
ContentDirectory.py View File

@@ -1,7 +1,7 @@
# Licensed under the MIT license
# http://opensource.org/licenses/mit-license.php
# Copyright 2005, Tim Potter <tpot@samba.org>
# Copyright 2006 John-Mark Gurney
# Copyright 2006 John-Mark Gurney <gurney_j@resnet.uoregon.edu>

#
# This module implements the Content Directory Service (CDS) service


+ 33
- 5
README View File

@@ -1,8 +1,36 @@
This code has been abandoned, but released in the hope that it might
be useful for someone. It is licensed under the MIT license at:

This code was abandoned by Tim Potter.
It is licensed under the MIT license at:
http://opensource.org/licenses/mit-license.php

As I should be getting my D-Link DSM-520 today, I need a UPnP Media
Server that I could use to stream data with. I tried one, but it had
issues running under FreeBSD's Linux emulation, so I found this code
that was was a good framework.

After a few days, I have the code working sucessfully with Intel's
Media Control Point, and Intel's Media Renderer. I have streamed both
mp3's and wmv's to the renderer. They are good tools for testing and
available at:
http://www.intel.com/cd/ids/developer/asmo-na/eng/downloads/upnp/index.htm

I have added a number of new features:
Don't bind the UDP socket to the multicast address, so replies
go out on our local IP.
Send out notify requests when we register the services with SSDP.
Send out byebye notifications when we are shutting down.
Randomize the UUID for the server (this should be part of the
saved state).
Randomize the port, or optionally set it on the command line.
Teach ContentDirectory.py the basics on handling Containers and
generic browse support. You can addItem and addContainer, which
each return either respective ObjectID.
We already support partial chunking of responses, but we don't yet
support filtering or sorting.

Either make a directory media and put the files there, or make a symlink
named media to your media files. Either will work. Run it as:
./pymediaserv <localip> [ <http server port> ]

Good Luck!

Tim Potter <tpot@samba.org>
2006-01-19
John-Mark Gurney <gurney_j@resnet.uoregon.edu>

+ 1
- 1
SSDP.py View File

@@ -1,7 +1,7 @@
# Licensed under the MIT license
# http://opensource.org/licenses/mit-license.php
# Copyright 2005, Tim Potter <tpot@samba.org>
# Copyright 2006 John-Mark Gurney
# Copyright 2006 John-Mark Gurney <gurney_j@resnet.uroegon.edu>

#
# Implementation of SSDP server under Twisted Python.


+ 1
- 1
pymediaserv View File

@@ -3,7 +3,7 @@
# Licensed under the MIT license
# http://opensource.org/licenses/mit-license.php
# Copyright 2005, Tim Potter <tpot@samba.org>
# Copyright 2006 John-Mark Gurney
# Copyright 2006 John-Mark Gurney <gurney_j@resnet.uroegon.edu>

from DIDLLite import TextItem, AudioItem, VideoItem, Resource
import os


Loading…
Cancel
Save