<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://en.wiki.guifi.net/w/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://en.wiki.guifi.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=80.35.145.231</id>
		<title>Guifi.net - English Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://en.wiki.guifi.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=80.35.145.231"/>
		<link rel="alternate" type="text/html" href="http://en.wiki.guifi.net/wiki/Special:Contributions/80.35.145.231"/>
		<updated>2026-09-21T14:46:27Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.22.0</generator>

	<entry>
		<id>http://en.wiki.guifi.net/wiki/Distributed_Multi-Media_DataBase/en</id>
		<title>Distributed Multi-Media DataBase/en</title>
		<link rel="alternate" type="text/html" href="http://en.wiki.guifi.net/wiki/Distributed_Multi-Media_DataBase/en"/>
				<updated>2009-07-17T10:35:41Z</updated>
		
		<summary type="html">&lt;p&gt;80.35.145.231: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TranslateES|Distributed Multi-Media DataBase}}&lt;br /&gt;
{{TranslateCA|Distributed Multi-Media DataBase}}&lt;br /&gt;
'''Distributed Multi-Media DataBase''' or '''dmmdb''' is a free [[wikipedia:Content Management System|Content Management System]] for video and audio for sharing in web. In words of its developers it was born &amp;quot;as a real alternative to public systems like ''YouTube'' or ''Vimeo''&amp;quot;. It has a Free license with Copyleft, it uses a [[ogg]] player for web wrote in [[java]] called [[cortado]] (its own implementation) or [[html5]] video tag. Latest version is 2.0RC1. It's the main web service for video in [http://giss.tv/dmmdb GISS.tv], but it is working in others servers and can be installed in new ones.&lt;br /&gt;
&lt;br /&gt;
Main developers are Lluis Gomez i Bigorda and Yves Degoyon.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* supports [[html5]] video tag &lt;br /&gt;
* supports [[ogg]]/theora and flash formats (optionally)&lt;br /&gt;
* skinable for each user&lt;br /&gt;
* upload and automatic conversion of video files to Ogg/Theora and of audio files to Ogg/Vorbis (or flash respectively)&lt;br /&gt;
* multi-language support&lt;br /&gt;
* search engine&lt;br /&gt;
* voting system (favorites)&lt;br /&gt;
* annotation/subtitles facility&lt;br /&gt;
* support for playlists&lt;br /&gt;
* RSS support that adds distributed capability to the publishing system&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
You can download source from [[CVS]] or from &amp;lt;code&amp;gt;tar.gz&amp;lt;/code&amp;gt; packages.&lt;br /&gt;
&lt;br /&gt;
=== CVS version ===&lt;br /&gt;
&lt;br /&gt;
The CVS version includes the latest developments for the dmmdb: &lt;br /&gt;
&lt;br /&gt;
 export CVSROOT=:pserver:anonymous@giss.tv:/home/cvs&lt;br /&gt;
 cvs login ( empty passwd )&lt;br /&gt;
 cvs co dmmdb&lt;br /&gt;
&lt;br /&gt;
=== From compressed packages===&lt;br /&gt;
You can download source code in http://giss.tv/dmmdbp/&lt;br /&gt;
&lt;br /&gt;
decompress the archive in a directory accesible to [[apache]]:&lt;br /&gt;
 tar xvfz dmmdb-x.y.z-rc1.tar.gz&lt;br /&gt;
&lt;br /&gt;
=== Dependencies ===&lt;br /&gt;
Install the following packages:&lt;br /&gt;
* [[php]]5  &lt;br /&gt;
 apt-get install php5&lt;br /&gt;
* [[apache]]2 &lt;br /&gt;
 apt-get install apache2&lt;br /&gt;
* mod_php for apache2  &lt;br /&gt;
 apt-get install libapache2-mod-php5&lt;br /&gt;
* mod_cgi for apache2  &lt;br /&gt;
 a2enmod mod_cgi&lt;br /&gt;
* mod_rewrite for apache2  &lt;br /&gt;
 a2enmod mod_rewrite&lt;br /&gt;
* [[ffmpeg]]  &lt;br /&gt;
 apt-get install ffmpeg&lt;br /&gt;
* [[ffmpeg2theora]]  &lt;br /&gt;
 apt-get install ffmpeg2theora&lt;br /&gt;
* [[ogginfo]]  &lt;br /&gt;
 apt-get install vorbis-tools&lt;br /&gt;
* [[mysql-server|MySQL]]  &lt;br /&gt;
 apt-get install mysql-server&lt;br /&gt;
* sendmail  &lt;br /&gt;
 apt-get install sendmail&lt;br /&gt;
&lt;br /&gt;
=== Configure your PHP installation===&lt;br /&gt;
edit your &amp;lt;code&amp;gt;php.ini&amp;lt;/code&amp;gt; file to set up the following parameters:&lt;br /&gt;
&lt;br /&gt;
 short_open_tag = On&lt;br /&gt;
 session.cache_expire = 1000&lt;br /&gt;
 post_max_size = 100M&lt;br /&gt;
(there you can customize your installation to set up the maximum size of the media you want to upload)&lt;br /&gt;
&lt;br /&gt;
=== Configure your apache installation ===&lt;br /&gt;
You have to add the following line in your apache configuration:&lt;br /&gt;
&lt;br /&gt;
 AddHandler cgi-script .cgi&lt;br /&gt;
&lt;br /&gt;
(this can be done in cgi.load for example)&lt;br /&gt;
&lt;br /&gt;
and define the directory for cgis :&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;Directory &amp;quot;&amp;lt;yourpath&amp;gt;/dmmdb/cgi-bin&amp;quot;&amp;gt;&lt;br /&gt;
                AllowOverride None&lt;br /&gt;
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch&lt;br /&gt;
                Order allow,deny&lt;br /&gt;
                Allow from all&lt;br /&gt;
        &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this can be done in sites-enabled/''[yoursite]'' if you use virtual hosts.&lt;br /&gt;
&lt;br /&gt;
=== Check that the mime types on your system are correct ===&lt;br /&gt;
&lt;br /&gt;
in your /etc/mime.types configuration file .ogg file should be decalred as application/ogg (and not like audio/ogg!)&lt;br /&gt;
&lt;br /&gt;
/etc/mime.types :&lt;br /&gt;
 application/ogg                                 ogx ogg&lt;br /&gt;
&lt;br /&gt;
=== Edit config.php and change the parameters according to your installation ===&lt;br /&gt;
(parameters are quite explicit)&lt;br /&gt;
&lt;br /&gt;
=== Create the dmmdb database in mysql ===&lt;br /&gt;
 # mysql -p&lt;br /&gt;
 Enter password: &lt;br /&gt;
 Welcome to the MySQL monitor.  Commands end with ; or \g.&lt;br /&gt;
 Your MySQL connection id is 49&lt;br /&gt;
 Server version: 5.0.51a-3ubuntu5.1 (Ubuntu)&lt;br /&gt;
 &lt;br /&gt;
 Type 'help;' or '\h' for help. Type '\c' to clear the buffer.&lt;br /&gt;
 &lt;br /&gt;
 mysql&amp;gt; create database dmmdb;&lt;br /&gt;
 Query OK, 1 row affected (0.00 sec)&lt;br /&gt;
 &lt;br /&gt;
 mysql&amp;gt; connect dmmdb&lt;br /&gt;
 Connection id:    50&lt;br /&gt;
 Current database: dmmdb&lt;br /&gt;
 &lt;br /&gt;
 mysql&amp;gt; source dmmdb.sql&lt;br /&gt;
 Query OK, 0 rows affected, 1 warning (0.00 sec)&lt;br /&gt;
 &lt;br /&gt;
 Query OK, 0 rows affected (0.06 sec)&lt;br /&gt;
 &lt;br /&gt;
 Query OK, 0 rows affected, 1 warning (0.00 sec)&lt;br /&gt;
 &lt;br /&gt;
 Query OK, 0 rows affected (0.01 sec)&lt;br /&gt;
 &lt;br /&gt;
 Query OK, 0 rows affected, 1 warning (0.00 sec)&lt;br /&gt;
 &lt;br /&gt;
 Query OK, 0 rows affected (0.00 sec)&lt;br /&gt;
 &lt;br /&gt;
 Query OK, 0 rows affected, 1 warning (0.00 sec)&lt;br /&gt;
 &lt;br /&gt;
 Query OK, 0 rows affected (0.01 sec)&lt;br /&gt;
 &lt;br /&gt;
=== Check your installation ===&lt;br /&gt;
Open a browser and go to &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://&amp;lt;/nowiki&amp;gt;''[yourhost]''&amp;lt;nowiki&amp;gt;/dmmdb/install.php&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to check that your installation is correct.&lt;br /&gt;
&lt;br /&gt;
You can start by creating a user and uploading your media.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
===Version 1.0 RC1===&lt;br /&gt;
The official release of the first ''dmmdb'' was made on the 18th of October.&lt;br /&gt;
&lt;br /&gt;
==Externals links==&lt;br /&gt;
*[http://giss.tv/wiki/index.php/Distributed_Multimedia_Database_System_Phase_2 Main page of dmmdb]&lt;br /&gt;
*[http://giss.tv/dmmdb/PCPtv Creation of a user channel in GISS]&lt;br /&gt;
*[http://giss.tv/dmmdb/cortado/ Implementation of Cortado in dmmmdb]&lt;br /&gt;
&lt;br /&gt;
[[Category:Free Web Project]]&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
&lt;br /&gt;
[[es:Distributed Multi-Media DataBase]]&lt;/div&gt;</summary>
		<author><name>80.35.145.231</name></author>	</entry>

	<entry>
		<id>http://en.wiki.guifi.net/wiki/Template:TranslateCA</id>
		<title>Template:TranslateCA</title>
		<link rel="alternate" type="text/html" href="http://en.wiki.guifi.net/wiki/Template:TranslateCA"/>
				<updated>2009-07-04T18:29:47Z</updated>
		
		<summary type="html">&lt;p&gt;80.35.145.231: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align:right; color:#999999; font-size: 91%;&amp;quot;&amp;gt;[[Image:Translation arrow.svg|right|51px|Icono de traducción]]Aquesta pàgina necessita ser traduïda al català, [[:ca:{{{1}}}|pots fer-ho]]!&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
[[Category:To translate to catalan]]&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Mediawiki:Maintenance templates]]&lt;br /&gt;
[[es:Plantilla:TraducirCA]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>80.35.145.231</name></author>	</entry>

	</feed>