<<
トップページへ
■概要
ffmprgをEPELレポ等からインストールしているとdownloadしたままのmediatomb-0.12.1はコンパイルができません。その対策を書いて置きます。
■実験の材料
たとえば私の環境です。
ffmpeg-1.2.1-4.el6.x86_64
ffmpeg-compat-0.6.6-1.el6.x86_64
ffmpeg-compat-devel-0.6.6-1.el6.x86_64
ffmpeg-devel-1.2.1-4.el6.x86_64
ffmpeg-libs-1.2.1-4.el6.x86_64
ffmpeg-spice-libs-0.4.9-0.15.5spice.20080908.el6.x86_64
ffmpegthumbnailer-2.0.8-1.x86_64
gstreamer-ffmpeg-0.10.11-1.el6.rf.x86_64
この環境でmediatomb-0.12.1をコンパイルするとエラーになるパッチを当てないとダメです。
普通にコンパイル作業をすると...エラーになる。
$ wget http://sourceforge.jp/projects/sfnet_mediatomb/downloads/MediaTomb/0.12.1/mediatomb-0.12.1.tar.gz
$ tar xvzf mediatomb-0.12.1.tar.gz
$ cd mediatomb-0.12.1
$ .configuer
$ make
avformat/avformat.h:1689)
../src/metadata/ffmpeg_handler.cc:279: 警告: ‘void <hr class="clear"
/>av_close_input_file(AVFormatContext*)’ is deprecated (declared at
/usr/include/ffmpeg/libavformat/avformat.h:1689)
make[2]: *** [libmediatomb_a-ffmpeg_handler.o] エラー 1
make[2]: ディレクトリ `/home/kkuma/mediatomb-0.12.1/build' から出ます
make[1]: *** [all-recursive] エラー 1
make[1]: ディレクトリ `/home/kkuma/mediatomb-0.12.1' から出ます
make: *** [all] エラー 2
そのため以下の二つのパッチを /mediatomb-0.12.1/src/metadata にdownloadして
$cd /mediatomb-0.12.1/src/metadata
$ patch -p3 < libav_0.7_support.patch
patching file ffmpeg_handler.cc
$ patch -p3 < libavformat_0.11_support.patch
patching file ffmpeg_handler.cc
Hunk #2 succeeded at 279 (offset 1 line).
Hunk #3 succeeded at 287 (offset 1 line).
Hunk #4 succeeded at 304 (offset 1 line).
これでコンパイルが通りますが一応、注意事項を書いておくと
rpm作成前に以下の作業を実施しておく
# vi /etc/ld.so.conf
/usr/local/lib
追加する。
# /sbin/ldconfig
ここで lastfmlib ffmpegthumbnailer rpmでインストールする
その後、試しにconfigureしてみる。
$ ./configure
sqlite3
: yes
mysql
: yes
libjs
: yes
libmagic
: yes
inotify
: yes
libexif
: yes
id3lib
: disabled
taglib
: yes
libmp4v2
: yes
ffmpeg
: yes
ffmpegthumbnailer : yes
lastfmlib
: yes
external transcoding : yes
curl
: yes
YouTube
: yes
libextractor :
disabled
db-autocreate : yes
次に試しにmekeしてみてエラーが出なければパッチ当ては成功
$ make
■rpmパッケージを作成してインストール
参考:
tar cvzf 圧縮後のファイル名.tar.gz 圧縮前のファイル名
このコマンドを使ってパッチを当てたディレクトリーを圧縮ファイルにする。
$ tar cvzf
mediatomb-0.12.1.tar.gz mediatomb-0.12.1
$ cp -r mediatomb-0.12.1.tar.gz /home/hoge/rpmbuild/SOURCES/
$ cp ./mediatomb.spec /home/hoge/rpmbuild/SPECS
$ cd /home/hoge/rpmbuild/SPECS
$ rpmbuild -bb ./mediatomb.spec
mediatonbのrpmを作成、インストールを行う。
# rpm -ivh /home/hoge/rpmbuild/RPMS/x86_64/mediatomb-0.12.2-1.el6.x86_64.rpm
■設定-1 mysql
mysqlのデーターベースで動作するようにmysqlのデーターベースを作成する。
データベースとlocalhostからのみ接続できる"mediatomb"というパスワードなしの名前のユーザを作成する。
参考リンク:http://www.impressit.co.jp/blog/dev/?p=5Link
$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or ¥g.Your MySQL
connection id is 36 to server version: 5.0.22Type 'help;' or '¥h' for
help. Type '¥c' to clear the buffer.
mysql> CREATE DATABASE mediatomb;
Query OK, 1 row affected (0.00 sec)
mysql> GRANT ALL ON mediatomb.* TO 'mediatomb'@'localhost';
Query OK, 0 rows affected (0.05 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> quit;Bye
# /etc/init.d/mysqld restart
■設定-2 /etc/mediatomb.conf
設定ファイルで起動デバイスを指定する。
# vi /etc/mediatomb.conf
## This is a sambel configuration file for the MediaTomb daemon script
## used on Fedora Core
## By default the configuration will be created in /etc/mediatomb
## Network interface on which the server will run, you need to edit
this!
#MT_INTERFACE="NOT_SET"
MT_INTERFACE="eth0"
## User defined command line options that may be passed to the server
MT_OPTIONS=""
## MediaTomb will be started on port 50500
MT_PORT="50500"
## MediaTomb will run as nobody
MT_USER="nobody"
MT_GROUP="nobody"
## Location of the PID file
MT_PIDFILE="/var/run/mediatomb.pid"
## Location of the log file
MT_LOGFILE="/var/log/mediatomb"
## Location of the config file/database
MT_HOME="/etc"
MT_CFGDIR="mediatomb"
/etc/mediatomb/config.xmlの設定
■設定-3 /etc/mediatomb/config.xml
REGZA対応の設定ファイルを上げておきます。
$ cat /etc/mediatomb/config.xml
<?xml version="1.0" encoding="UTF-8"?>
<config version="2" xmlns="http://mediatomb.cc/config/2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://mediatomb.cc/config/2
http://mediatomb.cc/config/2.xsd">
<server>
<ui enabled="yes" show-tooltips="yes">
<accounts enabled="no" session-timeout="30">
<account user="mediatomb" password="mediatomb"/>
</accounts>
</ui>
<name>MediaTomb-P4</name>
<udn>uuid:15084b5f-07n6-4f50-462a-3b806cbb6536</udn>
<home>/etc/mediatomb</home>
<webroot>/usr/share/mediatomb/web</webroot>
<storage>
<sqlite3 enabled="no">
<database-file>mediatomb.db</database-file>
</sqlite3>
<mysql enabled="yes">
<host>localhost</host>
<username>mediatomb</username>
<database>mediatomb</database>
</mysql>
</storage>
<protocolInfo extend="yes"/><!-- For PS3 support change to "yes" -->
<!--
Uncomment the lines below to get rid of jerky avi playback on the
DSM320 or to enable subtitles support on the DSM units
-->
<!--
<custom-http-headers>
<add header="X-User-Agent: redsonic"/>
</custom-http-headers>
<manufacturerURL>redsonic.com</manufacturerURL>
<modelNumber>105</modelNumber>
-->
<!-- Uncomment the line below if you have a Telegent TG100 -->
<!--
<upnp-string-limit>101</upnp-string-limit>
-->
<extended-runtime-options>
<ffmpegthumbnailer enabled="yes">
<thumbnail-size>128</thumbnail-size>
<seek-percentage>5</seek-percentage>
<filmstrip-overlay>yes</filmstrip-overlay>
<workaround-bugs>no</workaround-bugs>
<image-quality>8</image-quality>
</ffmpegthumbnailer>
<mark-played-items enabled="no" suppress-cds-updates="yes">
<string mode="prepend">*</string>
<mark>
<content>video</content>
</mark>
</mark-played-items>
<lastfm enabled="no">
<username>lastfmuser</username>
<password>lastfmpass</password>
</lastfm>
</extended-runtime-options>
</server>
<import hidden-files="no">
<scripting script-charset="UTF-8">
<common-script>/usr/share/mediatomb/js/common.js</common-script>
<playlist-script>/usr/share/mediatomb/js/playlists.js</playlist-script>
<virtual-layout type="builtin">
<import-script>/usr/share/mediatomb/js/import.js</import-script>
</virtual-layout>
</scripting>
<mappings>
<extension-mimetype ignore-unknown="no">
<map from="m2t" to="video/mpeg:DLNA.ORG_PN=MPEG_PS_NTSC;DLNA.ORG_OP=01;DLNA.ORG_CI=0"/>
<map from="ts" to="video/mpeg:DLNA.ORG_PN=MPEG_PS_NTSC;DLNA.ORG_OP=01;DLNA.ORG_CI=0"/>
<!-- <map from="ts" to="video/vnd.dlna.mpeg-tts"/>-->
<!-- <map from="m2ts" to="video/mpeg"/>-->
<map from="flv" to="video/x-flv"/>
<map from="jpg" to="image/jpeg"/>
<map from="jpeg" to="image/jpeg"/>
<map from="gif" to="image/gif"/>
<map from="png" to="image/png"/>
<map from="m4v" to="video/mp4"/>
<map from="mp4" to="video/mp4"/>
<map from="mpg" to="video/mpeg"/>
<map from="mpeg" to="video/mpeg"/>
<map from="divx" to="video/divx"/>
<map from="avi" to="video/avi"/>
<map from="mp3" to="audio/mpeg"/>
<map from="ogg" to="application/ogg"/>
<map from="asf" to="video/x-ms-asf"/>
<map from="asx" to="video/x-ms-asf"/>
<map from="wma" to="audio/x-ms-wma"/>
<map from="wax" to="audio/x-ms-wax"/>
<map from="wmv" to="video/x-ms-wmv"/>
<map from="wvx" to="video/x-ms-wvx"/>
<map from="wm" to="video/x-ms-wm"/>
<map from="wmx" to="video/x-ms-wmx"/>
<map from="m3u" to="audio/x-mpegurl"/>
<map from="pls" to="audio/x-scpls"/>
<map from="iso" to="application/x-iso9660"/>
<!-- Uncomment the line below for PS3 divx support -->
<map from="avi" to="video/divx"/>
<!-- Uncomment the line below for D-Link DSM / ZyXEL DMA-1000 -->
<!-- <map from="avi" to="video/avi"/> -->
</extension-mimetype>
<mimetype-upnpclass>
<map from="audio/*" to="object.item.audioItem.musicTrack"/>
<map from="video/*" to="object.item.videoItem"/>
<map from="image/*" to="object.item.imageItem"/>
</mimetype-upnpclass>
<mimetype-contenttype>
<treat mimetype="video/x-flv" as="flv"/>
<treat mimetype="audio/mpeg" as="mp3"/>
<treat mimetype="application/ogg" as="ogg"/>
<treat mimetype="audio/x-flac" as="flac"/>
<treat mimetype="image/jpeg" as="jpg"/>
<treat mimetype="audio/x-mpegurl" as="playlist"/>
<treat mimetype="audio/x-scpls" as="playlist"/>
<treat mimetype="audio/x-wav" as="pcm"/>
<treat mimetype="audio/L16" as="pcm"/>
<treat mimetype="video/x-msvideo" as="avi"/>
<treat mimetype="video/mp4" as="mp4"/>
<treat mimetype="video/x-flv" as="flv"/>
<treat mimetype="audio/mp4" as="mp4"/>
<treat mimetype="application/x-iso9660" as="dvd"/>
<treat mimetype="application/x-iso9660-image" as="dvd"/>
</mimetype-contenttype>
</mappings>
<online-content>
<YouTube enabled="yes" refresh="28800" update-at-start="yes"
purge-after="604800" racy-content="exclude" format="mp4" hd="yes">
<standardfeed feed="most_viewed" time-range="today"/>
<standardfeed feed="recently_featured" time-range="today"/>
</YouTube>
</online-content>
</import>
<transcoding enabled="yes">
<mimetype-profile-mappings>
<transcode mimetype="video/x-ms-wmv" using="vlcmpeg"/>
<transcode mimetype="video/divx" using="vlcmpeg"/>
<transcode mimetype="video/x-flv" using="vlcmpeg"/>
<transcode mimetype="application/ogg" using="vlcmpeg"/>
<transcode mimetype="application/ogg" using="oggflac2raw"/>
<transcode mimetype="audio/x-flac" using="oggflac2raw"/>
</mimetype-profile-mappings>
<profiles>
<profile name="oggflac2raw" enabled="no" type="external">
<mimetype>audio/L16</mimetype>
<accept-url>no</accept-url>
<first-resource>yes</first-resource>
<accept-ogg-theora>no</accept-ogg-theora>
<agent command="ogg123" arguments="-d raw -o byteorder:big -f %out %in"/>
<buffer size="1048576" chunk-size="131072" fill-size="262144"/>
</profile>
<profile name="vlcmpeg" enabled="yes" type="external">
<mimetype>video/mpeg</mimetype>
<accept-url>yes</accept-url>
<first-resource>yes</first-resource>
<accept-ogg-theora>yes</accept-ogg-theora>
<agent command="/usr/local/bin/mediatomb-transcode-video" arguments="%in %out"/>
<buffer size="14400000" chunk-size="512000" fill-size="120000"/>
</profile>
</profiles>
</transcoding>
</config>
■動作確認
# /etc/init.d/mediatomb restart
再起動してREGZA、PS3でいつものホルダーにアクセスして見えれば成功です。