Czz78 Movian Mediacenter

My Movian Plugins Repository

Insert this url in movian to enable repository: mp.czz78.com/repo.php

Movian repo builder script

Starting with Movian 6.0 supports multiple feed of plugins. For more information how to add new feeds to Movian see this article. Note: There is no longer a central plugin repository hosted at movian.tv site. See this article for more info. The easiest way to publish plugins is to commit each of them to a public repo at github. See https://github.com/andoma/movian-plugin-modarchive for an example how this should look. Then you can use the movian-repo tool found at https://github.com/czz/movian-repo to generate plugin feeds. Currently this tool only work with github hosted plugins. Edit a text file called repos.txt and fill it with one github repo name per line, for example:


/andoma/movian-plugin-sidplayer
/andoma/movian-plugin-xmpplayer
/andoma/movian-plugin-gmeplayer
/andoma/movian-plugin-modarchive
              

Run it like this:

python build.py -i repos.txt -o repo.json

Then you can upload this file on github pages or host it in any way you like. Then give the URL to your users.


Movian repo php class

A simple php class to build movian repository json response

How to use this class

Starting with Movian 6.0 supports multiple feed of plugins. For more information how to add new feeds to Movian see this article. Note: There is no longer a central plugin repository hosted at this site. See this article for more info. The easiest way to publish plugins is to commit each of them to a public repo at github. See https://github.com/andoma/movian-plugin-modarchive for an example how this should look. Use it like this:


$list = array("/relative_path_to_git_repo_1", "/relative_path_to_git_repo_2");
$mp = new MovianRepo();
$json = $mp->build($list);

// now you have the json string do what you whant, we echo it 
header('Content-Type: application/json');
echo $json;
              

Plugins