Notices


Reply
Thread Tools
badger's Avatar
Posts: 66 | Thanked: 7 times | Joined on Oct 2005 @ Europe
#1
I have been looking into the ability to easily add video podcasts to the Video Center application.

Within the Nokia Service Catalogue site there are a number of links which automate and configure the application with different video services - but what if I wanted to make my own video podcast have provide my viewers the ability to have my stream added to the video center application?

Well why not use the Nokia *.vcfg file format?

Its as easy as adding some an XML file to your webserver containing the details of your videocast and renaming it *.vcfg - you will also need to ensure that the correct MIME type has been added to the webserver.

Using the template below you can do just this.

Code:
<nv:ServiceProvider xmlns:nv="www.nokia.com/multimedia/video-service" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.nokia.com/multimedia/video-service" Version="1.0">
    <nv:Service Type="VC" Protocol="RSS2.0" ProviderID="http://www.podshow.com/feeds/nokia-n800.xml">
        <nv:ServiceDetails>
            <nv:Text>
                <nv:Title>Podshow N800</nv:Title>
                <nv:Description>Podshow N800 content</nv:Description>
            </nv:Text>
        </nv:ServiceDetails>
        <nv:ServiceURI>http://www.podshow.com/feeds/nokia-n800.xml</nv:ServiceURI>
        <nv:IconURI>http://www.podshow.com/images/defaults/shows/small/default.jpg</nv:IconURI>
        <nv:serviceAccountURI>
        </nv:serviceAccountURI>
        <nv:Auth>
            <nv:UserName></nv:UserName>
            <nv:Password></nv:Password>
        </nv:Auth>
        <nv:IAP></nv:IAP>
    </nv:Service>
</nv:ServiceProvider>
Save the file as MyFile.vcfg and copy it to your webserver.

The webserver will need to be configured to force the download of this filetype - .htaccess etc

Code:
AddType application/vcfg vcfg
Now all that left to do is create a HTML page with a hyperlink to the *.vcfg file and away you go - navigate to the HTML on the tablet and click on the link - you will now be asked if you want to add the videocast to the video center application.



Anyone up for hacking together a website where users can submit their own links? A kind of user generated Service Catalogue?
__________________
Some are wise, others are foolish
 

The Following User Says Thank You to badger For This Useful Post:
zerojay's Avatar
Posts: 2,669 | Thanked: 2,555 times | Joined on Apr 2007 @ Halifax, Nova Scotia, Canada
#2
Er... you mean like what I started about two months ago (and will be redone in a little while)? http://www.jablet.net/videocenter/

It was just a beta, so ignore the horrid looks.

It uses Mysql as a backend. When I add links to it, the site automatically creates the .vcfg files for me and adds them to the DB.

Last edited by zerojay; 2008-01-09 at 21:58.
 

The Following User Says Thank You to zerojay For This Useful Post:
Bundyo's Avatar
Posts: 4,708 | Thanked: 4,649 times | Joined on Oct 2007 @ Bulgaria
#3
Also Andrew Flegg's mediaserv can transcode videos on the fly and also generates vcfgs (which is actually a video RSS feed)
 
badger's Avatar
Posts: 66 | Thanked: 7 times | Joined on Oct 2005 @ Europe
#4
Originally Posted by zerojay View Post
Er... you mean like what I started about two months ago (and will be redone in a little while)? http://www.jablet.net/videocenter/

It was just a beta, so ignore the horrid looks.

It uses Mysql as a backend. When I add links to it, the site automatically creates the .vcfg files for me and adds them to the DB.
Kinda like that...

I was thinking of having the ability for users to submit their own links and urls for tested streams...

in fact virtually identical to the Gronmyer repo db. Great first effort zerojay.
__________________
Some are wise, others are foolish
 
Posts: 35 | Thanked: 3 times | Joined on Nov 2006
#5
I'm using mediaserv 0.5 and I would like to add the rss feed to videocenter but I get an error 'Service address invalid'. Any idea how add the mediaserv feed to videocenter? I also tried with the vcfg file but the app hang...
 
aflegg's Avatar
Posts: 1,463 | Thanked: 81 times | Joined on Oct 2005 @ UK
#6
I've not tested with OS 2008 yet (both Video Center and microb have had updates), but I seem to remember an issue with Video Center and spaces.

What is the RSS address which has been generated?

Sorry for the inconvenience, BTW.
__________________
Andrew Flegg -- mailto:andrew@bleb.org | http://www.bleb.org
Now known as
Jaffa
 
Posts: 3 | Thanked: 0 times | Joined on Jan 2008
#7
I was having the same problem MoxFulder reported, so I modified the mediaserv .vcfg file using the template posted by badger as a guide. The result was:

Code:
<nv:ServiceProvider xmlns:nv="www.nokia.com/multimedia/video-service" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.nokia.com/multimedia/video-service" Version="1.0">
    <nv:Service Type="VC" Protocol="RSS2.0" ProviderID="http://192.168.1.200:8090/rss/">
        <nv:ServiceDetails>
            <nv:Text>
                <nv:Title>MediaServ</nv:Title>
                <nv:Description>On-demand media from mediaserv</nv:Description>
            </nv:Text>
        </nv:ServiceDetails>
        <nv:ServiceURI>http://192.168.1.200:8090/rss/</nv:ServiceURI>
        <nv:serviceAccountURI>
        </nv:serviceAccountURI>
        <nv:Auth>
            <nv:UserName></nv:UserName>
            <nv:Password></nv:Password>
        </nv:Auth>
        <nv:IAP></nv:IAP>
    </nv:Service>
</nv:ServiceProvider>
This seems to work fine.

Anyways, mediaserv is a great piece of software! I do have a couple of feature requests, though:
  • Kill mencoder if the stream is no longer required,
  • Allow me to move forward in the video stream (to skip commercials)
 
aflegg's Avatar
Posts: 1,463 | Thanked: 81 times | Joined on Oct 2005 @ UK
#8
Originally Posted by chilli_peppa View Post
I was having the same problem MoxFulder reported, so I modified the mediaserv .vcfg file using the template posted by badger as a guide.
Thanks for this, I'll try and get it in the next version.

Anyways, mediaserv is a great piece of software! I do have a couple of feature requests, though:
  • Kill mencoder if the stream is no longer required,
  • Allow me to move forward in the video stream (to skip commercials)
1) Should already happen, unless you've got keepResults = 1. If not, it's a bug and needs fixing.

2) is impossible; unless anyone has a moment of technical geniousity. It *might* be possible to use a separate player which tells mediaserv to kill mencoder and restart it at a new position. But you're probably better off then with the VLC-based knots solution.
__________________
Andrew Flegg -- mailto:andrew@bleb.org | http://www.bleb.org
Now known as
Jaffa
 
Posts: 3 | Thanked: 0 times | Joined on Jan 2008
#9
1) Should already happen, unless you've got keepResults = 1. If not, it's a bug and needs fixing.
I do have keepResults = 0. To confirm this, I let the encoding process run to completion and it did indeed remove the file in .mediaserv/data/.

Closing Media Player, Video Center or even turning off the N800 completely didn't stop the encoding (nor did killing the Mediaserv processes).

I'm running on Feisty and am using Mediaserv strictly to access Mythtv recordings. I'm using .05 of MediaServ and 2.16 for tablet-encode.
 
aflegg's Avatar
Posts: 1,463 | Thanked: 81 times | Joined on Oct 2005 @ UK
#10
Doh. Thanks - I'll try and investigate. Could you send me the log?
__________________
Andrew Flegg -- mailto:andrew@bleb.org | http://www.bleb.org
Now known as
Jaffa
 
Reply


 
Forum Jump


All times are GMT. The time now is 23:12.