<mediawiki xmlns="http://www.mediawiki.org/xml/export-0.10/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.10/ http://www.mediawiki.org/xml/export-0.10.xsd" version="0.10" xml:lang="de">
  <siteinfo>
    <sitename>Linupedia.org</sitename>
    <dbname>linupediadb</dbname>
    <base>https://linupedia.org/opensuse/Hauptseite</base>
    <generator>MediaWiki 1.31.0</generator>
    <case>first-letter</case>
    <namespaces>
      <namespace key="-2" case="first-letter">Medium</namespace>
      <namespace key="-1" case="first-letter">Spezial</namespace>
      <namespace key="0" case="first-letter" />
      <namespace key="1" case="first-letter">Diskussion</namespace>
      <namespace key="2" case="first-letter">Benutzer</namespace>
      <namespace key="3" case="first-letter">Benutzer Diskussion</namespace>
      <namespace key="4" case="first-letter">Linupedia.org</namespace>
      <namespace key="5" case="first-letter">Linupedia.org Diskussion</namespace>
      <namespace key="6" case="first-letter">Datei</namespace>
      <namespace key="7" case="first-letter">Datei Diskussion</namespace>
      <namespace key="8" case="first-letter">MediaWiki</namespace>
      <namespace key="9" case="first-letter">MediaWiki Diskussion</namespace>
      <namespace key="10" case="first-letter">Vorlage</namespace>
      <namespace key="11" case="first-letter">Vorlage Diskussion</namespace>
      <namespace key="12" case="first-letter">Hilfe</namespace>
      <namespace key="13" case="first-letter">Hilfe Diskussion</namespace>
      <namespace key="14" case="first-letter">Kategorie</namespace>
      <namespace key="15" case="first-letter">Kategorie Diskussion</namespace>
    </namespaces>
  </siteinfo>
  <page>
    <title>Videoconverterscript</title>
    <ns>0</ns>
    <id>1758</id>
    <revision>
      <id>28807</id>
      <parentid>28806</parentid>
      <timestamp>2012-06-14T10:07:43Z</timestamp>
      <contributor>
        <username>Josef-wien</username>
        <id>1284</id>
      </contributor>
      <minor/>
      <comment>Zweiten Rückwärts-Schrägstrich ergänzt und Formalfehler-Meldungen umschifft (im Konsolfenster &quot;PSP-Thumb Converting&quot; sind ffmpeg-Fehler vorhanden).</comment>
      <model>wikitext</model>
      <format>text/x-wiki</format>
      <text xml:space="preserve" bytes="13427">Hier ein kleines Script zum automatischen konvertieren bekannter Videoformate in DVD, VCD, SVCD und PSP konforme Mpeg-Dateien:
=Allgemeine Version=
Voraussetzung: ffmpeg und mencoder(im mplayer Paket enthalten) müssen installiert sein, für die Ausgangsdaten eventuell weitere benötigte Codecs sollten ebenso installiert sein.

Benötigter Parameter: Der Name der zu konvertierenden Datei bzw. des Ausgangsmediums. 
Beispiel: 
 converterscript.sh ./meinfilm.avi

----

'''To-Do Liste:'''

* Overrideoption für die Settings über die Kommandozeile einbauen
* Ncurses oder grafische Oberfläche dazu passend erstellen oder einbauen
* Weitere Formate einbauen
* Optionale Einstellung für den Konsolentyp/Terminaltyp einbauen (bisher nur mit der KDE-Konsole laufend)

----
 
{|-
|'''Changelog:'''
|-
|''[http://www.linux-club.de/wiki/index.php?title=Videoconverterscript&amp;oldid=12609 v0.0.2-ccj1]''
|Leerzeichen in Dateinamen akzeptieren, if[]-Tests und Struktur vereinfachen
|-
|''[http://www.linux-club.de/wiki/index.php?title=Videoconverterscript&amp;direction=prev&amp;oldid=12606 v0.0.2]''
|Zielformateauswahl verbessert und Prüfung auf Existenz der Zielverzeichnise eingebaut, von parallel laufender Multi-Konsolenversion auf lineare Version mit nur einem weiteren Konsolenfenster umgebaut
|-
|''[http://www.linux-club.de/wiki/index.php?title=Videoconverterscript&amp;direction=next&amp;oldid=5845 v.0.0.1b]''
|Grundlegende Pfadstruktur der Zielpfade verbessert
|-
|''[http://www.linux-club.de/wiki/index.php?title=Videoconverterscript&amp;oldid=2970 v.0.0.1]''
|Anfangsversion des Converterscripts
|-
|}
----
converterscript.sh
&lt;pre&gt;
#!/bin/sh
# Conversionscript for converting Videofiles to Widescreen+Fullscreen/ PAL+NTSC DVD, PAL+NTSC VCD/SVCD/XVCD, PSP Fileformat with Help of mencoder and ffmpeg
# V. 0.0.2-ccj1
#
# ccj-Fork by LC-User jengelh with permission of Mainline Creator
# Mainline (c) by Tom Meierjürgen tomcatmj@web.de
# Licence: Creative Commons - attribution - non-commercial - sharealike
#
# Basic settings
#
#
# Mediatype ALL, DVD, VCD or PSP
#
MEDIA=ALL
#
# TV-Standards
# Choose PAL, NTSC or ALL
STANDARD=ALL
#
# Fullscreen or Widescreen or both (DVD only) (FULL, WIDE, BOTH)
VIEW=BOTH
#
# Choose VCD, SVCD, XVCD or ALL
#
CDTYPE=ALL
#
# Targetdirectories, change values to your needs
BASE=&quot;~/converted&quot;;
PSP=&quot;$BASE/PSP&quot;;
FULLDVD=&quot;$BASE/DVD/FULLSCREEN&quot;;
WIDEDVD=&quot;$BASE/DVD/WIDESCREEN&quot;;
VCD=&quot;$BASE/VCD&quot;;
XVCD=&quot;$BASE/XVCD&quot;;
SVCD=&quot;$BASE/SVCD&quot;;
#
# Initializing and conversions
#
# Check if basic targetdirectory exists
#
mkdir -p &quot;$BASE&quot;;

basename1=&quot;${1##*/}&quot;;
#
# DVD initial targetdirectory existencecheck
#
# Check if DVD-Targetdirectories exist
#
# FFMpeg Fullscreen DVD
#
if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == DVD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == PAL \) -a \( &quot;$VIEW&quot; == FULL -o &quot;$VIEW&quot; == BOTH \) ]; then
    mkdir -p &quot;$FULLDVD/ffmpeg/PAL&quot;;
    echo &quot;Starting Fullscreen PAL-DVD conversion with ffmpeg...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - FFMPEG Fullscreen PAL-DVD Converting...&quot; -e ffmpeg -i &quot;$1&quot; -target pal-dvd -aspect 4:3 &quot;$FULLDVD/ffmpeg/PAL/$basename1.mpg&quot;;
    echo &quot;Fullscreen PAL-DVD conversion with ffmpeg finished.&quot;;
else
    echo &quot;No Fullscreen PAL-DVD conversion with encodertype ffmpeg selected&quot;;
fi

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == DVD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == NTSC \) -a \( &quot;$VIEW&quot; == FULL -o &quot;$VIEW&quot; == BOTH \) ]; then
    mkdir -p &quot;$FULLDVD/ffmpeg/NTSC&quot;;
    echo &quot;Starting Fullscreen NTSC-DVD conversion with ffmpeg...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - FFMPEG Fullscreen NTSC-DVD Converting...&quot; -e ffmpeg -i &quot;$1&quot; -target ntsc-dvd -aspect 4:3 &quot;$FULLDVD/ffmpeg/NTSC/$basename1.mpg&quot;;
    echo &quot;Fullscreen NTSC-DVD conversion with ffmpeg finished.&quot;;
else
    echo &quot;No Fullscreen NTSC-DVD conversion with encodertype ffmpeg selected.&quot;;
fi

#
# FFMpeg Widescreen DVD
#
if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == DVD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == PAL \) -a \( &quot;$VIEW&quot; == WIDE -o &quot;$VIEW&quot; == BOTH \) ]; then
    mkdir -p &quot;$WIDEDVD/ffmpeg/PAL&quot;;
    echo &quot;Starting Fullscreen NTSC-DVD conversion with ffmpeg...&quot;;
    time konsole  --caption &quot;Converterscript v.0.0.2 - FFMPEG Widescreen PAL-DVD Converting...&quot; -e ffmpeg -i &quot;$1&quot; -target pal-dvd -aspect 16:9 &quot;$WIDEDVD/ffmpeg/PAL/$basename1.mpg&quot;;
    echo &quot;Widescreen PAL-DVD with ffmpeg finished.&quot;;
else
    echo &quot;No Widescreen PAL-DVD conversion with encodertype ffmpeg selected.\n&quot;;
fi
 
if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == DVD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == NTSC \) -a \( &quot;$VIEW&quot; == WIDE -o &quot;$VIEW&quot; == BOTH \) ]; then
    mkdir -p &quot;$WIDEDVD/ffmpeg/NTSC&quot;;
    echo &quot;Starting Widescreen NTSC-DVD conversion with ffmpeg...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - FFMPEG Widescreen NTSC-DVD Converting...&quot; -e ffmpeg -i &quot;$1&quot; -target ntsc-dvd -aspect 16:9 &quot;$WIDEDVD/ffmpeg/NTSC/$basename1.mpg&quot;;
    echo &quot;Widescreen NTSC-DVD conversion with ffmpeg finished.&quot;;
else
    echo &quot;No Widescreen NTSC-DVD conversion with encodertype ffmpeg selected.&quot;;
fi

#
# Mencoder Fullscreen DVD
# 

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == DVD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == PAL \) -a \( &quot;$VIEW&quot; == FULL -o &quot;$VIEW&quot; == BOTH \) ]; then
    mkdir -p &quot;$FULLDVD/mencoder/PAL&quot;;
    echo &quot;Starting Fullscreen PAL-DVD conversion with mencoder...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - MENCODER Fullscreen PAL-DVD Converting...&quot; -e time mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=352:576,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:acodec=ac3:abitrate=192:aspect=4/3 -ofps 25 -o &quot;$FULLDVD/mencoder/PAL/$basename1.mpg&quot; &quot;$1&quot;;
    echo &quot;Fullscreen PAL-DVD conversion with mencoder finished.&quot;;
else
    echo &quot;No Fullscreen PAL-DVD conversion with encodertype mencoder selected.&quot;;
fi 

if [ \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == NTSC \) -a \( &quot;$VIEW&quot; == FULL -o &quot;$VIEW&quot; == BOTH \) ]; then
    mkdir -p &quot;$FULLDVD/mencoder/NTSC&quot;;
    echo &quot;Starting Fullscreen NTSC-DVD conversion with mencoder...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - MENCODER Fullscreen NTSC-DVD Converting...&quot; -e time mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=352:480,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=18:acodec=ac3:abitrate=192:aspect=4/3 -ofps 30000/1001 -o &quot;$FULLDVD/mencoder/NTSC/$basename1.mpg&quot; &quot;$1&quot;;
    echo &quot;Fullscreen NTSC-DVD conversion with mencoder finished.&quot;;
else
    echo &quot;No Fullscreen NTSC-DVD conversion with encodertype mencoder selected.&quot;;
fi

#
# Mencoder Widescreen DVD
#

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == DVD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == PAL \) -a \( &quot;$VIEW&quot; == WIDE -o &quot;$VIEW&quot; == BOTH \) ]; then
    mkdir -p &quot;$WIDEDVD/mencoder/PAL&quot;;
    echo &quot;Starting Widescreen PAL-DVD conversion with mencoder...&quot;;
    time konsole  --caption &quot;Converterscript v.0.0.2 - MENCODER Widescreen PAL-DVD  Converting...&quot; -e mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:576,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:acodec=ac3:abitrate=192:aspect=16/9 -ofps 25 -o &quot;$WIDEDVD/mencoder/PAL/$basename1.mpg&quot; &quot;$1&quot;;
    echo &quot;Widescreen PAL-DVD conversion finished.&quot;;
else
    echo &quot;No Widescreen PAL-DVD conversion with encodertype mencoder selected.&quot;;
fi

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == DVD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == NTSC \) -a \( &quot;$VIEW&quot; == WIDE -o &quot;$VIEW&quot; == BOTH \) ]; then
    mkdir -p &quot;$WIDEDVD/mencoder/NTSC&quot;;
    echo &quot;Starting Fullscreen NTSC-DVD conversion with ffmpeg...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - MENCODER Widescreen NTSC-DVD Converting...&quot; -e mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:480,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=18:acodec=ac3:abitrate=192:aspect=16/9 -ofps 30000/1001 -o &quot;$WIDEDVD/mencoder/NTSC/$basename1.mpg&quot; &quot;$1&quot;;
    echo &quot;Widescreen NTSC-DVD conversion finished.&quot;;
else
    echo &quot;No Widescreen NTSC-DVD conversion with encodertype mencoder selected.&quot;;
fi

#
# VCD
#

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == VCD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == PAL \) -a \( &quot;$CDTYPE&quot; == VCD -o &quot;$CDTYPE&quot; == ALL \) ]; then
    mkdir -p &quot;$VCD/ffmpeg/PAL&quot;;
    echo &quot;Starting PAL-VCD conversion...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - FFMPEG PAL-VCD Converting...&quot; -e ffmpeg -i &quot;$1&quot; -target pal-vcd &quot;$VCD/ffmpeg/PAL/$basename1.mpg&quot;;
    echo &quot;PAL-VCD conversion finished.&quot;;
else
    echo &quot;No PAL-VCD conversion selected.&quot;;
fi 

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == VCD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == NTSC \) -a \( &quot;$CDTYPE&quot; == VCD -o &quot;$CDTYPE&quot; == ALL \) ]; then
    mkdir -p &quot;$VCD/ffmpeg/NTSC&quot;;
    echo &quot;Starting NTSC-VCD conversion...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - FFMPEG NTSC-VCD Converting...&quot; -e time ffmpeg -i &quot;$1&quot; -target ntsc-vcd &quot;$VCD/ffmpeg/NTSC/$basename1.mpg&quot;;
    echo &quot;NTSC-VCD conversion finished.&quot;;
else
    echo &quot;No NTSC-VCD conversion selected.&quot;;
fi

#
# SVCD
#

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == VCD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == PAL \) -a \( &quot;$CDTYPE&quot; == SVCD -o &quot;$CDTYPE&quot; == ALL \) ]; then
    mkdir -p &quot;$SVCD/ffmpeg/PAL&quot;;
    echo &quot;Starting PAL-SVCD conversion...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - FFMPEG PAL-SVCD Converting...&quot; -e ffmpeg -i &quot;$1&quot; -target pal-svcd &quot;$SVCD/ffmpeg/PAL/$basename1.mpg&quot;;
    echo &quot;PAL-SVCD conversion finished.&quot;;
else
    echo &quot;No PAL-SVCD conversion selected.&quot;;
fi 

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == VCD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == NTSC \) -a \( &quot;$CDTYPE&quot; == SVCD -o &quot;$CDTYPE&quot; == ALL \) ]; then
    mkdir -p &quot;$SVCD/ffmpeg/NTSC&quot;;
    echo &quot;Starting NTSC-SVCD conversion...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - FFMPEG NTSC-SVCD Converting...&quot; -e ffmpeg -i &quot;$1&quot; -target ntsc-svcd &quot;$SVCD/ffmpeg/NTSC/$basename1.mpg&quot;;
    echo &quot;NTSC-SVCD conversion finished.&quot;;
else
    echo &quot;No NTSC-SVCD conversion selected.&quot;;
fi

#
# XVCD
#

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == VCD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == PAL \) -a \( &quot;$CDTYPE&quot; == XVCD -o &quot;$CDTYPE&quot; == ALL \) ]; then
    mkdir -p &quot;$XVCD/mencoder/PAL&quot;;
    echo &quot;Starting PAL-XVCD conversion...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - MENCODER PAL XVCD Converting...&quot; -e mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=xvcd -vf scale=352:288,harddup -srate 44100 -af lavcresample=44100 -lavcopts vcodec=mpeg1video:keyint=15:vrc_buf_size=327:vrc_minrate=1152:vbitrate=1152:vrc_maxrate=1152:acodec=mp2:abitrate=224 -ofps 25 -o &quot;$XVCD/mencoder/PAL/$basename1.mpg&quot; &quot;$1&quot;;
    echo &quot;PAL-XVCD conversion finished.&quot;;
else
    echo &quot;No PAL-XVCD conversion selected.&quot;;
fi

if [ \( &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == VCD \) -a \( &quot;$STANDARD&quot; == ALL -o &quot;$STANDARD&quot; == NTSC \) -a \( &quot;$CDTYPE&quot; == XVCD -o &quot;$CDTYPE&quot; == ALL \) ]; then
    mkdir -p &quot;$XVCD/mencoder/NTSC&quot;;
    echo &quot;Starting NTSC-XVCD conversion...&quot;;
    time konsole  --caption &quot;Converterscript v.0.0.2 - MENCODER NTSC XVCD Converting...&quot; -e mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=xvcd -vf scale=352:240,harddup -srate 44100 -af lavcresample=44100 -lavcopts vcodec=mpeg1video:keyint=18:vrc_buf_size=327:vrc_minrate=1152:vbitrate=1152:vrc_maxrate=1152:acodec=mp2:abitrate=224 -ofps 30000/1001 -o &quot;$XVCD/mencoder/NTSC/$basename1.mpg&quot; &quot;$1&quot;;
    echo &quot;NTSC-XVCD conversion finished.&quot;;
else
    echo &quot;No NTSC-XVCD conversion selected.&quot;;
fi

#
# PSP
#

if [[ &quot;$MEDIA&quot; == ALL || &quot;$MEDIA&quot; == PSP ]]; then
    mkdir -p &quot;$PSP&quot;;
    echo &quot;PSP conversion started...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - Converting for Sony PlayStationPortable...&quot; -e ffmpeg -i &quot;$1&quot; -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 &quot;$PSP/$basename1.MP4&quot;;
    echo &quot;Creating thumbnail graphics...&quot;;
    time konsole --noclose --caption &quot;Converterscript v.0.0.2 - PSP-Thumb Converting...&quot; -e ffmpeg -y -i &quot;$1&quot; -f ljpeg -ss 5 -vframes 1 -s 160x120 -an &quot;$PSP/$basename1.THM&quot;;
    echo &quot;PSP Conversion finished.&quot;;
else
    echo &quot;PSP-Conversion not selected.&quot;;
fi

#
# Special
#
	
if [ &quot;$MEDIA&quot; == ALL -o &quot;$MEDIA&quot; == &quot;Special&quot; ]; then
    mkdir -p &quot;$PSP&quot;;
    echo &quot;For future special devices... not available for now, so PSP conversion started...&quot;;
    time konsole --caption &quot;Converterscript v.0.0.2 - Converting for Sony PlayStationPortable...&quot; -e ffmpeg -i &quot;$1&quot; -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 &quot;$PSP/$basename1.MP4&quot;;
    echo &quot;Creating thumbnail graphics...&quot;;
    time konsole --noclose --caption &quot;PSP-Thumb Converting...&quot; -e ffmpeg -y -i &quot;$1&quot; -f ljpeg -ss 5 -vframes 1 -s 160x120 -an &quot;$PSP/$basename1.THM&quot;;
    echo &quot;PSP Conversion finished.&quot;;
else
    echo &quot;PSP-Conversion not selected.&quot;;
fi

echo &quot;Conversions finished.&quot;;
&lt;/pre&gt;


--[[Benutzer:TomcatMJ|TomcatMJ]] 10:27, 14. Mär 2007 (CET)

=GP2X Version=
{{:Videoconverterscript/GP2X}}
----
[[Multimedia | Zurück zur Multimediaübersicht]]&lt;br /&gt;
[[Shellscripte | Zurück zur Shellscripteübersicht]]&lt;br /&gt;
[[Videokonvertierung und DVD oder SVCD erstellen | Zurück zu &quot;Videokonvertierung und DVD oder SVCD erstellen&quot;]]

[[Category:Scripte]]
[[Category:Multimedia]]</text>
      <sha1>b7bv4pdc51zun6po5fuihvgip4dpsg5</sha1>
    </revision>
  </page>
</mediawiki>
