mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-05-13 16:11:37 +02:00
MPFire Version 2 begonnen
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@872 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
218
config/mpfire/mpd.conf
Normal file
218
config/mpfire/mpd.conf
Normal file
@@ -0,0 +1,218 @@
|
|||||||
|
# MPD CONFIG FILE
|
||||||
|
# For a full description of all config parameters,
|
||||||
|
# Check the mpd man page, "man mpd".
|
||||||
|
|
||||||
|
##################### REQUIRED ###########################
|
||||||
|
port "6600"
|
||||||
|
music_directory "/"
|
||||||
|
playlist_directory "/var/ipfire/mpfire"
|
||||||
|
log_file "/var/log/mpd.log"
|
||||||
|
error_file "/var/log/mpd.error.log"
|
||||||
|
pid_file "/var/run/mpd.pid"
|
||||||
|
##########################################################
|
||||||
|
|
||||||
|
##########################################################
|
||||||
|
# EVERYTHING ELSE IS OPTIONAL
|
||||||
|
##########################################################
|
||||||
|
|
||||||
|
#################### OPTIONAL FILES ######################
|
||||||
|
#
|
||||||
|
# Location of DB file
|
||||||
|
#
|
||||||
|
db_file "/var/ipfire/mpfire/db/mpd.db"
|
||||||
|
#
|
||||||
|
# The state file (if set) will be a file
|
||||||
|
# for storing all current information
|
||||||
|
# (playlist, playing/paused, etc...) from
|
||||||
|
# the last MPD session. This will be used
|
||||||
|
# to recreate your last MPD session after
|
||||||
|
# restart.
|
||||||
|
#
|
||||||
|
state_file "/var/ipfire/mpfire/mpd_state"
|
||||||
|
#
|
||||||
|
##########################################################
|
||||||
|
|
||||||
|
|
||||||
|
################### VOLUME MIXER #########################
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
# ALSA Mixer
|
||||||
|
mixer_type "alsa"
|
||||||
|
mixer_device "default"
|
||||||
|
mixer_control "PCM"
|
||||||
|
#
|
||||||
|
# OSS Mixer
|
||||||
|
#mixer_type "oss"
|
||||||
|
#mixer_device "/dev/mixer"
|
||||||
|
#mixer_control "PCM"
|
||||||
|
#
|
||||||
|
# Software Mixer
|
||||||
|
#mixer_type "software"
|
||||||
|
#
|
||||||
|
##########################################################
|
||||||
|
|
||||||
|
|
||||||
|
################## AUDIO OUTPUT ##########################
|
||||||
|
#
|
||||||
|
audio_output {
|
||||||
|
type "alsa"
|
||||||
|
name "alsa"
|
||||||
|
device "hw:0,0" # optional
|
||||||
|
format "44100:16:2" # optional
|
||||||
|
}
|
||||||
|
#
|
||||||
|
# An example of an OSS output:
|
||||||
|
#
|
||||||
|
audio_output {
|
||||||
|
type "oss"
|
||||||
|
name "My OSS Device"
|
||||||
|
device "/dev/dsp" # optional
|
||||||
|
format "44100:16:2" # optional
|
||||||
|
}
|
||||||
|
#
|
||||||
|
# An example of a shout output (for streaming to Icecast):
|
||||||
|
#
|
||||||
|
audio_output {
|
||||||
|
type "shout"
|
||||||
|
name "My Shout Stream"
|
||||||
|
host "localhost"
|
||||||
|
port "8000"
|
||||||
|
mount "/mpd.ogg"
|
||||||
|
password "hackme"
|
||||||
|
# quality "5.0"
|
||||||
|
bitrate "128"
|
||||||
|
format "44100:16:1"
|
||||||
|
# user "source" # optional
|
||||||
|
# description "My Stream Description" # optional
|
||||||
|
# genre "jazz" # optional
|
||||||
|
# public "no" # optional
|
||||||
|
}
|
||||||
|
#
|
||||||
|
# Set this if you have problems
|
||||||
|
# playing audio files.
|
||||||
|
# This will resample your music so
|
||||||
|
# that it comes out at the set rate.
|
||||||
|
#
|
||||||
|
#audio_output_format "44100:16:2"
|
||||||
|
#
|
||||||
|
# You should not need mess with
|
||||||
|
# this value unless you know
|
||||||
|
# what you're doing.
|
||||||
|
#
|
||||||
|
#audio_write_size "1024"
|
||||||
|
#
|
||||||
|
##########################################################
|
||||||
|
|
||||||
|
################# REPLAYGAIN #############################
|
||||||
|
#
|
||||||
|
# Use Replay Gain (album or title)
|
||||||
|
# http://www.replaygain.org
|
||||||
|
#
|
||||||
|
#replaygain "album"
|
||||||
|
#
|
||||||
|
# Sets the pre-amp used for files that have replaygain
|
||||||
|
# info. Valid values are between -15 to 15 (in dB).
|
||||||
|
#
|
||||||
|
#replaygain_preamp "0"
|
||||||
|
#
|
||||||
|
##########################################################
|
||||||
|
|
||||||
|
|
||||||
|
################ OUTPUT BUFFER SETTINGS ##################
|
||||||
|
#
|
||||||
|
# You should not need to mess with this
|
||||||
|
# unless you know what you're doing.
|
||||||
|
#
|
||||||
|
audio_buffer_size "2048"
|
||||||
|
#
|
||||||
|
# This means exactly what it says, it will
|
||||||
|
# buffer your file up to the percentage of
|
||||||
|
# the buffer before it begins playing.
|
||||||
|
#
|
||||||
|
buffer_before_play "25%"
|
||||||
|
#
|
||||||
|
##########################################################
|
||||||
|
|
||||||
|
|
||||||
|
################### HTTP PROXY ###########################
|
||||||
|
#
|
||||||
|
# http_proxy_host "proxy.isp.com"
|
||||||
|
# http_proxy_port "8080"
|
||||||
|
# http_proxy_user "user"
|
||||||
|
# http_proxy_password "password"
|
||||||
|
#
|
||||||
|
##########################################################
|
||||||
|
|
||||||
|
|
||||||
|
################# SECURITY SETTINGS ######################
|
||||||
|
#
|
||||||
|
# It is encouraged to run MPD as
|
||||||
|
# non-superuser. If you start mpd as root
|
||||||
|
# (for example, in an init script), set
|
||||||
|
# this value, then mpd will drop root priveleges
|
||||||
|
# and runs as the user specified.
|
||||||
|
#
|
||||||
|
user "nobody"
|
||||||
|
#
|
||||||
|
# Set this value if you only have one
|
||||||
|
# address you want to allow connection to.
|
||||||
|
#
|
||||||
|
bind_to_address "localhost"
|
||||||
|
#
|
||||||
|
# If you want to setup MPD to use
|
||||||
|
# passwords set them here
|
||||||
|
#
|
||||||
|
#password "password1@read,add,control,admin"
|
||||||
|
#password "password2@read"
|
||||||
|
#
|
||||||
|
# Specify permissions used by default when no password is
|
||||||
|
# given by for a connection/client.
|
||||||
|
#
|
||||||
|
#default_permissions "read,add,control,admin"
|
||||||
|
#
|
||||||
|
##########################################
|
||||||
|
|
||||||
|
|
||||||
|
################ MISCELLANEOUS OPTIONS ###################
|
||||||
|
#
|
||||||
|
# This setting exists as precaution against attacks.
|
||||||
|
#
|
||||||
|
#max_playlist_length "16384"
|
||||||
|
#
|
||||||
|
# Valid options are "default", "secure" or "verbose".
|
||||||
|
#log_level "default"
|
||||||
|
#
|
||||||
|
connection_timeout "60"
|
||||||
|
#
|
||||||
|
# This should be fine for 2-3 people using clients
|
||||||
|
# at the same time.
|
||||||
|
#
|
||||||
|
#max_connections "5"
|
||||||
|
#
|
||||||
|
# No need to change these unless you know better.
|
||||||
|
#
|
||||||
|
#max_command_list_size "2048"
|
||||||
|
#max_output_buffer_size "2048"
|
||||||
|
#
|
||||||
|
# This will make playlists compatible with normal music
|
||||||
|
# players.
|
||||||
|
#
|
||||||
|
#save_absolute_paths_in_playlists "no"
|
||||||
|
#
|
||||||
|
##########################################################
|
||||||
|
|
||||||
|
###################### CHARACTER ENCODINGS #####################
|
||||||
|
#
|
||||||
|
# If file or directory names do not display correctly, then you
|
||||||
|
# may need to change this. In most cases it should be either
|
||||||
|
# "ISO-8859-1" or "UTF-8". You must recreate your database
|
||||||
|
# after changing this (use mpd --create-db).
|
||||||
|
#
|
||||||
|
filesystem_charset "UTF-8"
|
||||||
|
#
|
||||||
|
# The encoding that ID3v1 tags should be converted from.
|
||||||
|
#
|
||||||
|
id3v1_encoding "UTF-8"
|
||||||
|
metadata_to_use "artist,album,title,track,name,comment,date,genre"
|
||||||
|
#
|
||||||
|
################################################################
|
||||||
@@ -1,80 +1,44 @@
|
|||||||
#!/usr/bin/perl
|
#!/usr/bin/perl
|
||||||
###############################################################################
|
|
||||||
# #
|
|
||||||
# IPFire.org - A linux based firewall #
|
|
||||||
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
|
|
||||||
# #
|
|
||||||
# This program is free software: you can redistribute it and/or modify #
|
|
||||||
# it under the terms of the GNU General Public License as published by #
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or #
|
|
||||||
# (at your option) any later version. #
|
|
||||||
# #
|
|
||||||
# This program is distributed in the hope that it will be useful, #
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
||||||
# GNU General Public License for more details. #
|
|
||||||
# #
|
|
||||||
# You should have received a copy of the GNU General Public License #
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
|
||||||
# #
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
use MP3::Tag;
|
|
||||||
use MP3::Info;
|
|
||||||
|
|
||||||
require '/var/ipfire/general-functions.pl';
|
require '/var/ipfire/general-functions.pl';
|
||||||
require "${General::swroot}/lang.pl";
|
require "${General::swroot}/lang.pl";
|
||||||
require "${General::swroot}/header.pl";
|
require "${General::swroot}/header.pl";
|
||||||
|
|
||||||
my $filename = "";
|
my $filename = "";
|
||||||
my %songs = "";
|
|
||||||
my $debug = 0;
|
my $debug = 0;
|
||||||
my $temp;
|
|
||||||
|
|
||||||
if ($ARGV[0] eq 'scan') {
|
if ( ! -e /var/run/mpd.pid){
|
||||||
my $command = "find ";
|
system("mpd >/dev/null");
|
||||||
chomp $ARGV[1];
|
|
||||||
$command .= "\"$ARGV[1]\"";
|
|
||||||
if ($ARGV[2] eq 'off'){$command .= " -maxdepth 1";}
|
|
||||||
$command .= " -name *.mp3";
|
|
||||||
my @files = `$command`;
|
|
||||||
|
|
||||||
&getExistingSongs();
|
|
||||||
|
|
||||||
foreach (@files){
|
|
||||||
$filename = $_;
|
|
||||||
chomp($filename)
|
|
||||||
&getSongInfo();
|
|
||||||
}
|
|
||||||
open(DATEI, ">${General::swroot}/mpfire/db/songs.db") || die "Kann Datenbank nicht speichern";
|
|
||||||
print DATEI %songs;
|
|
||||||
close(DATEI);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($ARGV[0] eq 'getdb') {
|
if ($ARGV[0] eq 'scan') {
|
||||||
&getExistingSongs();
|
if ($debug){print "Creating Database\n";}
|
||||||
print %songs;
|
system("mpd --create-db >/dev/null");
|
||||||
}
|
}
|
||||||
elsif ($ARGV[0] eq 'play') {
|
elsif ($ARGV[0] eq 'play') {
|
||||||
&checkplaylist();
|
|
||||||
&checkmute();
|
&checkmute();
|
||||||
|
&clearplaylist();
|
||||||
if ($debug){print "Yes we are called and we will play $ARGV[1]\n";}
|
if ($debug){print "Yes we are called and we will play $ARGV[1]\n";}
|
||||||
system("/usr/bin/mpg123 -b 1024 --aggressive -q \"$ARGV[1]\" 2>/dev/null >/dev/null &");
|
system("mpc add \"$ARGV[1]\" >/dev/null && mpc play >/dev/null");
|
||||||
|
}
|
||||||
|
elsif ($ARGV[0] eq 'playadd') {
|
||||||
|
if ($debug){print "Yes we are called and we will add $ARGV[1]\n";}
|
||||||
|
system("mpc add \"$ARGV[1]\" >/dev/null && mpc play >/dev/null");
|
||||||
|
}
|
||||||
|
elsif ($ARGV[0] eq 'playlist') {
|
||||||
|
&checkmute();
|
||||||
|
&clearplaylist();
|
||||||
|
if ($debug){print "Yes we are called and we will play your Playlist\n";}
|
||||||
|
system("mpc load playlist >/dev/null && mpc play >/dev/null");
|
||||||
|
}
|
||||||
|
elsif ($ARGV[0] eq 'clearplaylist') {
|
||||||
|
if ($debug){print "Deleting playlist\n";}
|
||||||
|
&clearplaylist();
|
||||||
}
|
}
|
||||||
elsif ($ARGV[0] eq 'stop') {
|
elsif ($ARGV[0] eq 'stop') {
|
||||||
my $PID = `ps -ef \| grep "wget -qO" \| head -1 \| grep -v "sh -c" \| awk '{ print \$2 }'`;
|
my $PID = 'cat /var/run/mpd.pid';
|
||||||
if ( $PID ne '' ){
|
|
||||||
if ($debug){print "Stopping $PID\n";}
|
|
||||||
system("kill -KILL $PID");
|
|
||||||
my $PID = `ps -ef \| grep "mpg123 -b 1024 --aggressive -Zq -" \| head -1 \| grep -v "sh -c" \| awk '{ print \$2 }'`;
|
|
||||||
if ($debug){print "Killing Process $PID\n";}
|
if ($debug){print "Killing Process $PID\n";}
|
||||||
system("kill -KILL $PID");
|
system("mpc stop >/dev/null");
|
||||||
}
|
|
||||||
else{
|
|
||||||
my $PID = `ps -ef \| grep mpg123 \| grep playlist \| head -1 \| grep -v "sh -c" \| awk '{ print \$2 }'`;
|
|
||||||
if ($debug){print "Stopping $PID\n";}
|
|
||||||
system("kill -KILL $PID");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
elsif ($ARGV[0] eq 'volup') {
|
elsif ($ARGV[0] eq 'volup') {
|
||||||
if ($debug){print "Increasing Volume\n";}
|
if ($debug){print "Increasing Volume\n";}
|
||||||
@@ -87,59 +51,33 @@ elsif ($ARGV[0] eq 'voldown') {
|
|||||||
system("/usr/bin/amixer set PCM $ARGV[1]%- 2>/dev/null >/dev/null");
|
system("/usr/bin/amixer set PCM $ARGV[1]%- 2>/dev/null >/dev/null");
|
||||||
}
|
}
|
||||||
elsif ($ARGV[0] eq 'playall') {
|
elsif ($ARGV[0] eq 'playall') {
|
||||||
&checkplaylist();
|
|
||||||
&checkmute();
|
|
||||||
if ($debug){print "Playing everything\n";}
|
if ($debug){print "Playing everything\n";}
|
||||||
system("/usr/bin/mpg123 -b 1024 --aggressive -Zq@ /var/ipfire/mpfire/playlist 2>/dev/null >/dev/null &");
|
system("mpc play >/dev/null");
|
||||||
}
|
}
|
||||||
elsif ($ARGV[0] eq 'pause') {
|
elsif ($ARGV[0] eq 'toggle') {
|
||||||
my $PID = `ps -ef \| grep mpg123 \| grep playlist \| head -1 \| grep -v "sh -c" \| grep -v "grep" \| awk '{ print \$2 }'`;
|
system("mpc toggle >/dev/null");
|
||||||
if ($debug){print "Pausing Process $PID\n";}
|
|
||||||
system("kill -STOP $PID");
|
|
||||||
}
|
|
||||||
elsif ($ARGV[0] eq 'resume') {
|
|
||||||
my $PID = `ps -ef \| grep mpg123 \| grep playlist \| head -1 \| grep -v "sh -c" \| grep -v "grep" \| awk '{ print \$2 }'`;
|
|
||||||
if ($debug){print "Resuming Process $PID\n";}
|
|
||||||
system("kill -CONT $PID");
|
|
||||||
}
|
}
|
||||||
elsif ($ARGV[0] eq 'next') {
|
elsif ($ARGV[0] eq 'next') {
|
||||||
if ($debug){print "Next Song\n";}
|
if ($debug){print "Next Song\n";}
|
||||||
my $PID = `ps -ef | grep mpg123 | grep playlist | head -1 | awk '{ print \$2 }'`;
|
system("mpc next >/dev/null[");
|
||||||
system("kill -SIGINT $PID");
|
}
|
||||||
|
elsif ( $ARGV[0] eq 'prev' ) {
|
||||||
|
if ($debug){print "Previous Song\n";}
|
||||||
|
system("mpc prev >/dev/null");
|
||||||
}
|
}
|
||||||
elsif ($ARGV[0] eq 'song') {
|
elsif ($ARGV[0] eq 'song') {
|
||||||
&checkmute();
|
my $song = `mpc \| head -2 | grep -v volume`;
|
||||||
my $song = `lsof -nX \| grep mpg123 \| grep REG \| grep mem | grep mp3 \| grep -v "sh -c" \| grep -v "grep"`;
|
print $song;
|
||||||
my @song = split(/\//,$song);
|
|
||||||
my $i = @song;
|
|
||||||
if ( $i == 0 ){
|
|
||||||
my $song = `ps -ef \| grep "wget -qO" \| grep -v "sh -c" \| grep -v "grep"`;
|
|
||||||
my @song = split(/http\:\/\//,$song);
|
|
||||||
my $temp = $song[1];
|
|
||||||
my @song = split(/ /,$temp);
|
|
||||||
print $song[0];
|
|
||||||
}
|
}
|
||||||
else { print $song[$i-1];}
|
elsif ($ARGV[0] eq 'stats') {
|
||||||
|
my $song = `mpc stats | grep Songs`;
|
||||||
|
print $song;
|
||||||
}
|
}
|
||||||
elsif ($ARGV[0] eq 'playweb') {
|
elsif ($ARGV[0] eq 'playweb') {
|
||||||
&General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
|
|
||||||
&checkmute();
|
&checkmute();
|
||||||
|
&clearplaylist();
|
||||||
if ($proxysettings{'UPSTREAM_PROXY'}) {
|
if ($debug){print "Playing webstream $ARGV[1] \n";}
|
||||||
if ($proxysettings{'UPSTREAM_USER'}) {
|
system("mpc add http://$ARGV[1] >/dev/null && mpc play >/dev/null && sleep 1");
|
||||||
&checkm3uproxy();
|
|
||||||
if ($debug){print "Playing webstream\n";}
|
|
||||||
system("wget -qO - `wget -qO - http://$proxysettings{'UPSTREAM_USER'}:$proxysettings{'UPSTREAM_PASSWORD'}@$proxysettings{'UPSTREAM_PROXY'}$ARGV[1]` | mpg123 -b 1024 --aggressive -Zq - 2>/dev/null >/dev/null &");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
&checkm3uproxyuser();
|
|
||||||
if ($debug){print "Playing webstream\n";}
|
|
||||||
system("wget -qO - `wget -qO - http://$proxysettings{'UPSTREAM_PROXY'}$ARGV[1]` | mpg123 -b 1024 --aggressive -Zq - 2>/dev/null >/dev/null &");}
|
|
||||||
} else {
|
|
||||||
&checkm3u();
|
|
||||||
if ($debug){print "Playing webstream\n";}
|
|
||||||
system("wget -qO - `wget -qO - http://$ARGV[1]` | mpg123 -b 1024 --aggressive -Zq - 2>/dev/null >/dev/null &");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
elsif ($ARGV[0] eq 'volume') {
|
elsif ($ARGV[0] eq 'volume') {
|
||||||
$temp = "Master - ";
|
$temp = "Master - ";
|
||||||
@@ -149,26 +87,12 @@ elsif ($ARGV[0] eq 'volume') {
|
|||||||
print $temp;
|
print $temp;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub getSongInfo(){
|
sub clearplaylist(){
|
||||||
my $mp3 = MP3::Tag->new($filename);
|
system("mpc clear >/dev/null");
|
||||||
my ($title, $track, $artist, $album, $comment, $year, $genre) = $mp3->autoinfo();
|
|
||||||
my $info = get_mp3info($filename);
|
|
||||||
$mp3->close();
|
|
||||||
$songs{$filename} = "|".$artist."|".$title."|".$track."|".$album."|".$year."|".$genre."|".$info->{MM}."|".$info->{SS}."|".$info->{BITRATE}."|".$info->{FREQUENCY}."|".$info->{MODE}."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
sub getExistingSongs(){
|
|
||||||
open(DATEI, "<${General::swroot}/mpfire/db/songs.db") || die "Keine Datenbank vorhanden";
|
|
||||||
my @Zeilen = <DATEI>;
|
|
||||||
close(DATEI);
|
|
||||||
foreach (@Zeilen){
|
|
||||||
my @Zeile = split(/\|/,$_);
|
|
||||||
$songs{$Zeile[0]} = "|".$Zeile[1]."|".$Zeile[2]."|".$Zeile[3]."|".$Zeile[4]."|".$Zeile[5]."|".$Zeile[6]."|".$Zeile[7]."|".$Zeile[8]."|".$Zeile[9]."|".$Zeile[10]."|".$Zeile[11]."\n";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sub checkplaylist(){
|
sub checkplaylist(){
|
||||||
my $Datei = "/var/ipfire/mpfire/playlist";
|
my $Datei = "/var/ipfire/mpfire/playlist.m3u";
|
||||||
my @Info = stat($Datei);
|
my @Info = stat($Datei);
|
||||||
if ( $Info[7] eq '' || $Info[7] eq '0' ){print "There is no playlist";exit(1);}
|
if ( $Info[7] eq '' || $Info[7] eq '0' ){print "There is no playlist";exit(1);}
|
||||||
}
|
}
|
||||||
@@ -187,18 +111,3 @@ sub checkmute(){
|
|||||||
system("amixer set Master toggle");
|
system("amixer set Master toggle");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sub checkm3u(){
|
|
||||||
my $Datei = system("wget -q --spider http://$ARGV[1]");
|
|
||||||
if ( $Datei ne '0' ){print "We are unable to get the stream";exit(1);}
|
|
||||||
}
|
|
||||||
|
|
||||||
sub checkm3uproxy(){
|
|
||||||
my $Datei = system("wget -q --spider http://$ARGV[1]");
|
|
||||||
if ( $Datei ne '0' ){print "We are unable to get the stream";exit(1);}
|
|
||||||
}
|
|
||||||
|
|
||||||
sub checkm3uproxyuser(){
|
|
||||||
my $Datei = system("wget -q --spider http://$ARGV[1]");
|
|
||||||
if ( $Datei ne '0' ){print "We are unable to get the stream";exit(1);}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
www.89.0rtl.de/webradio/rtl-high.m3u|89.0 RTL Hitradio
|
62.75.176.45/rtl-high|89.0 RTL Hitradio|http://www.89.0rtl.de
|
||||||
metafiles.gl-systemhaus.de/wdr/channel_einslive.m3u|Einslive
|
gffstream.ic.llnwd.net/stream/gffstream_stream_wdr_einslive_b|Einslive|http://www.einslive.de/
|
||||||
www.deepinside.co.uk/ecoute-deepinside-wmp.m3u|Deepinside Radio European
|
213.186.41.149:8040|Deepinside Radio European|http://www.deepinside.co.uk
|
||||||
www.bigfm.de/webradio/bigfm-high.m3u|BigFM
|
62.75.176.40:80/bigfm-cbr-128|BigFM|http://www.bigfm.de
|
||||||
www.brocken.de/webradio/brocken-high.m3u|Hit-Radio Brocken
|
62.75.176.44/brocken-high|Hit-Radio Brocken|http://www.radiobrocken.de
|
||||||
|
87.118.100.135:9191|Spaceworld Radio|http://spaceworld-radio.de/
|
||||||
|
dsl.blackbeats.fm:13000|BlackBeats FM|http://www.blackbeats.fm
|
||||||
|
87.118.64.197:3100|Discofox-Radio|http://www.discofox-radio.de
|
||||||
|
rmnradio.powerstream.de:8022|RMNradio|http://www.rmnradio.de/
|
||||||
|
|||||||
@@ -5,15 +5,7 @@ var/ipfire/mpfire
|
|||||||
var/ipfire/mpfire/bin
|
var/ipfire/mpfire/bin
|
||||||
var/ipfire/mpfire/bin/mpfire.pl
|
var/ipfire/mpfire/bin/mpfire.pl
|
||||||
var/ipfire/mpfire/db
|
var/ipfire/mpfire/db
|
||||||
var/ipfire/mpfire/db/songs.db
|
var/ipfire/mpfire/db/mpd.db
|
||||||
var/ipfire/mpfire/playlist
|
var/ipfire/mpfire/playlist.m3u
|
||||||
var/ipfire/mpfire/settings
|
var/ipfire/mpfire/settings
|
||||||
usr/lib/perl5/site_perl/5.8.8/MP3/Info.pm
|
var/ipfire/mpfire/mpd.conf
|
||||||
usr/lib/perl5/site_perl/5.8.8/MP3/Tag.pm
|
|
||||||
usr/lib/perl5/site_perl/5.8.8/MP3/Tag/File.pm
|
|
||||||
usr/lib/perl5/site_perl/5.8.8/MP3/Tag/ID3v1.pm
|
|
||||||
usr/lib/perl5/site_perl/5.8.8/MP3/Tag/ID3v2.pm
|
|
||||||
usr/lib/perl5/site_perl/5.8.8/MP3/Tag/ParseData.pm
|
|
||||||
usr/lib/perl5/site_perl/5.8.8/MP3/Tag/LastResort.pm
|
|
||||||
usr/lib/perl5/site_perl/5.8.8/MP3/Tag/Inf.pm
|
|
||||||
usr/lib/perl5/site_perl/5.8.8/MP3/Tag/CDDB_File.pm
|
|
||||||
|
|||||||
@@ -389,3 +389,5 @@ WARNING: translation string unused: week
|
|||||||
WARNING: translation string unused: weekly firewallhits
|
WARNING: translation string unused: weekly firewallhits
|
||||||
WARNING: translation string unused: xtaccess bad transfert
|
WARNING: translation string unused: xtaccess bad transfert
|
||||||
WARNING: translation string unused: yearly firewallhits
|
WARNING: translation string unused: yearly firewallhits
|
||||||
|
WARNING: untranslated string: pause
|
||||||
|
WARNING: untranslated string: resume
|
||||||
|
|||||||
@@ -423,3 +423,5 @@ WARNING: translation string unused: week
|
|||||||
WARNING: translation string unused: weekly firewallhits
|
WARNING: translation string unused: weekly firewallhits
|
||||||
WARNING: translation string unused: xtaccess bad transfert
|
WARNING: translation string unused: xtaccess bad transfert
|
||||||
WARNING: translation string unused: yearly firewallhits
|
WARNING: translation string unused: yearly firewallhits
|
||||||
|
WARNING: untranslated string: pause
|
||||||
|
WARNING: untranslated string: resume
|
||||||
|
|||||||
@@ -1,28 +1,15 @@
|
|||||||
#!/usr/bin/perl
|
#!/usr/bin/perl
|
||||||
###############################################################################
|
#
|
||||||
# #
|
# IPFire CGIs
|
||||||
# IPFire.org - A linux based firewall #
|
#
|
||||||
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
|
# This code is distributed under the terms of the GPL
|
||||||
# #
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify #
|
# (c) The IPFire Team
|
||||||
# it under the terms of the GNU General Public License as published by #
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or #
|
|
||||||
# (at your option) any later version. #
|
|
||||||
# #
|
|
||||||
# This program is distributed in the hope that it will be useful, #
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
||||||
# GNU General Public License for more details. #
|
|
||||||
# #
|
|
||||||
# You should have received a copy of the GNU General Public License #
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
|
||||||
# #
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
# enable only the following on debugging purpose
|
# enable only the following on debugging purpose
|
||||||
#use warnings;
|
use warnings;
|
||||||
#use CGI::Carp 'fatalsToBrowser';
|
use CGI::Carp 'fatalsToBrowser';
|
||||||
|
|
||||||
require '/var/ipfire/general-functions.pl';
|
require '/var/ipfire/general-functions.pl';
|
||||||
require "${General::swroot}/lang.pl";
|
require "${General::swroot}/lang.pl";
|
||||||
@@ -35,11 +22,6 @@ my %checked = ();
|
|||||||
my $message = '0';
|
my $message = '0';
|
||||||
my $errormessage = "";
|
my $errormessage = "";
|
||||||
|
|
||||||
open(DATEI, "<${General::swroot}/mpfire/db/songs.db") || die "No Database found";
|
|
||||||
my @songdb = <DATEI>;
|
|
||||||
close(DATEI);
|
|
||||||
@songdb = sort(@songdb);
|
|
||||||
|
|
||||||
&General::readhash("${General::swroot}/main/settings", \%mainsettings);
|
&General::readhash("${General::swroot}/main/settings", \%mainsettings);
|
||||||
&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
|
&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
|
||||||
|
|
||||||
@@ -49,6 +31,44 @@ sub refreshpage{&Header::openbox( 'Waiting', 1, "<meta http-equiv='refresh' cont
|
|||||||
|
|
||||||
$mpfiresettings{'PAGE'} = "1";
|
$mpfiresettings{'PAGE'} = "1";
|
||||||
|
|
||||||
|
open(DATEI, "<${General::swroot}/mpfire/db/mpd.db") || die "No Database found";
|
||||||
|
my @songdb = <DATEI>;
|
||||||
|
close(DATEI);
|
||||||
|
|
||||||
|
my @artist; my @album; my @genre; my @year; my $linecount = 0; my @currentsong = ""; my %songs;
|
||||||
|
foreach (@songdb){
|
||||||
|
|
||||||
|
if ( $_ =~ /mtime: / ){
|
||||||
|
$songs{$currentsong[1]}="$currentsong[2]|$currentsong[3]|$currentsong[4]|$currentsong[5]|$currentsong[6]|$currentsong[7]|$currentsong[8]|$currentsong[9]";
|
||||||
|
push(@artist,$currentsong[4]);
|
||||||
|
push(@album,$currentsong[6]);
|
||||||
|
push(@year,$currentsong[8]);
|
||||||
|
push(@genre,$currentsong[9]);
|
||||||
|
@currentsong = "";
|
||||||
|
}
|
||||||
|
elsif ( $_ =~ /key: / || $_ =~ /file: / || $_ =~ /Time: / || $_ =~ /Artist: / || $_ =~ /Title: / || $_ =~ /Album: / || $_ =~ /Track: / || $_ =~ /Date: / || $_ =~ /Genre: / ){
|
||||||
|
my @temp = split(/: /,$_);
|
||||||
|
push(@currentsong,$temp[1]);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
my %hash = map{ $_, 1 }@artist;
|
||||||
|
@artist = sort keys %hash;
|
||||||
|
my %hash = map{ $_, 1 }@album;
|
||||||
|
@album = sort keys %hash;
|
||||||
|
my %hash = map{ $_, 1 }@year;
|
||||||
|
@year = sort keys %hash;
|
||||||
|
my %hash = map{ $_, 1 }@genre;
|
||||||
|
@genre = sort keys %hash;
|
||||||
|
|
||||||
|
my $artistcount = $#artist+1;
|
||||||
|
my $albumcount = $#album+1;
|
||||||
|
my $yearcount = $#year+1;
|
||||||
|
my $genrecount = $#genre+1;
|
||||||
|
|
||||||
&Header::getcgihash(\%mpfiresettings);
|
&Header::getcgihash(\%mpfiresettings);
|
||||||
&Header::openpage($Lang::tr{'mpfire'}, 1, "<meta http-equiv='refresh' content='120' />");
|
&Header::openpage($Lang::tr{'mpfire'}, 1, "<meta http-equiv='refresh' content='120' />");
|
||||||
&Header::openbigbox('100%', 'left', '', $errormessage);
|
&Header::openbigbox('100%', 'left', '', $errormessage);
|
||||||
@@ -60,110 +80,111 @@ if ( $mpfiresettings{'ACTION'} eq "scan" )
|
|||||||
{
|
{
|
||||||
delete $mpfiresettings{'__CGI__'};delete $mpfiresettings{'x'};delete $mpfiresettings{'y'};delete $mpfiresettings{'PAGE'};
|
delete $mpfiresettings{'__CGI__'};delete $mpfiresettings{'x'};delete $mpfiresettings{'y'};delete $mpfiresettings{'PAGE'};
|
||||||
&General::writehash("${General::swroot}/mpfire/settings", \%mpfiresettings);
|
&General::writehash("${General::swroot}/mpfire/settings", \%mpfiresettings);
|
||||||
$message=system("/usr/local/bin/mpfirectrl scan $mpfiresettings{'SCANDIR'} $mpfiresettings{'SCANDIRDEPS'}");
|
open(DATEI, "<${General::swroot}/mpfire/mpd.conf") || die "Datei nicht gefunden";
|
||||||
|
my @Zeilen = <DATEI>;
|
||||||
|
close(DATEI);
|
||||||
|
open(DATEI, ">${General::swroot}/mpfire/mpd.conf") || die "Datei nicht gefunden";
|
||||||
|
foreach (@Zeilen){
|
||||||
|
if ( $_ =~ /music_directory/){print DATEI "music_directory \"".$mpfiresettings{'MUSICDIR'}."\"\n";}
|
||||||
|
else {print DATEI $_;}
|
||||||
|
}
|
||||||
|
close(DATEI);
|
||||||
|
|
||||||
|
$message=system("/usr/local/bin/mpfirectrl scan");
|
||||||
refreshpage();
|
refreshpage();
|
||||||
}
|
}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq ">" ){$message=system("/usr/local/bin/mpfirectrl","play","\"$mpfiresettings{'FILE'}\"");}
|
elsif ( $mpfiresettings{'ACTION'} eq ">" ){$message=system("/usr/local/bin/mpfirectrl","play","\"$mpfiresettings{'FILE'}\"");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "x" ){$message=system("/usr/local/bin/mpfirectrl stop");}
|
elsif ( $mpfiresettings{'ACTION'} eq "x" ){$message=system("/usr/local/bin/mpfirectrl stop");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "||" ){$message=system("/usr/local/bin/mpfirectrl pause");}
|
elsif ( $mpfiresettings{'ACTION'} eq "|>" ){$message=system("/usr/local/bin/mpfirectrl toggle");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "|>" ){$message=system("/usr/local/bin/mpfirectrl resume");}
|
elsif ( $mpfiresettings{'ACTION'} eq "<<" ){$message=system("/usr/local/bin/mpfirectrl prev");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq ">>" ){$message=system("/usr/local/bin/mpfirectrl next");}
|
elsif ( $mpfiresettings{'ACTION'} eq ">>" ){$message=system("/usr/local/bin/mpfirectrl next");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "playweb" ){$message=system("/usr/local/bin/mpfirectrl","playweb","\"$mpfiresettings{'FILE'}\"");}
|
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "+" ){$message=system("/usr/local/bin/mpfirectrl volup 5");}
|
elsif ( $mpfiresettings{'ACTION'} eq "+" ){$message=system("/usr/local/bin/mpfirectrl volup 5");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "-" ){$message=system("/usr/local/bin/mpfirectrl voldown 5");}
|
elsif ( $mpfiresettings{'ACTION'} eq "-" ){$message=system("/usr/local/bin/mpfirectrl voldown 5");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "++" ){$message=system("/usr/local/bin/mpfirectrl volup 10");}
|
elsif ( $mpfiresettings{'ACTION'} eq "++" ){$message=system("/usr/local/bin/mpfirectrl volup 10");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "--" ){$message=system("/usr/local/bin/mpfirectrl voldown 10");}
|
elsif ( $mpfiresettings{'ACTION'} eq "--" ){$message=system("/usr/local/bin/mpfirectrl voldown 10");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "playlist" ){$message=system("/usr/local/bin/mpfirectrl playall");}
|
elsif ( $mpfiresettings{'ACTION'} eq "playweb" ){$message=system("/usr/local/bin/mpfirectrl","playweb","\"$mpfiresettings{'FILE'}\"");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "emptyplaylist" ){$message=system("unlink ${General::swroot}/mpfire/playlist && touch ${General::swroot}/mpfire/playlist");}
|
elsif ( $mpfiresettings{'ACTION'} eq "playlist" ){$message=system("/usr/local/bin/mpfirectrl playlist");}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "addtoplaylist" ){
|
elsif ( $mpfiresettings{'ACTION'} eq "emptyplaylist" ){$message=system("/usr/local/bin/mpfirectrl clearplaylist");}
|
||||||
open(DATEI, ">>${General::swroot}/mpfire/playlist") || die "Could not add playlist";
|
elsif ( $mpfiresettings{'ACTION'} eq "addtoplaylist" ){$message=system("/usr/local/bin/mpfirectrl","playadd","\"$mpfiresettings{'FILE'}\"");}
|
||||||
print DATEI $mpfiresettings{'FILE'}."\n";
|
elsif ( $mpfiresettings{'ACTION'} eq "playall" ){$message=system("/usr/local/bin/mpfirectrl playall");}
|
||||||
close(DATEI);
|
|
||||||
}
|
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "playalbum" )
|
elsif ( $mpfiresettings{'ACTION'} eq "playalbum" )
|
||||||
{
|
{
|
||||||
my @temp = "";
|
my @temp = ""; my @song = ""; my @select = split(/\|/,$mpfiresettings{'album'});
|
||||||
my @album = split(/\|/,$mpfiresettings{'album'});
|
|
||||||
my %hash = map{ $_, 1 }@album;
|
|
||||||
|
|
||||||
foreach (@songdb){
|
foreach (keys(%songs)){
|
||||||
my @song = split(/\|/,$_);
|
@song = split(/\|/,$songs{$_});$song[4] =~ s/\W/ /g;
|
||||||
chomp($song[0]);
|
|
||||||
push(@temp,$song[0]."\n") if exists $hash{$song[4]};
|
foreach (@select){
|
||||||
|
$_ =~ s/\W/ /g;
|
||||||
|
if ( $song[4] =~ /$_/ ){push(@temp,$song[0]);}
|
||||||
}
|
}
|
||||||
open(DATEI, ">${General::swroot}/mpfire/playlist") || die "Could not add playlist";
|
}
|
||||||
|
|
||||||
|
open(DATEI, ">${General::swroot}/mpfire/playlist.m3u") || die "Could not add playlist";
|
||||||
print DATEI @temp;
|
print DATEI @temp;
|
||||||
close(DATEI);
|
close(DATEI);
|
||||||
$message=system("/usr/local/bin/mpfirectrl playall");
|
$message=system("/usr/local/bin/mpfirectrl playlist");
|
||||||
}
|
}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "playartist" )
|
elsif ( $mpfiresettings{'ACTION'} eq "playartist" )
|
||||||
{
|
{
|
||||||
my @temp = "";
|
my @temp = ""; my @song = ""; my @select = split(/\|/,$mpfiresettings{'artist'});
|
||||||
my @artist = split(/\|/,$mpfiresettings{'artist'});
|
|
||||||
my %hash = map{ $_, 1 }@artist;
|
|
||||||
|
|
||||||
foreach (@songdb){
|
foreach (keys(%songs)){
|
||||||
my @song = split(/\|/,$_);
|
@song = split(/\|/,$songs{$_});$song[2] =~ s/\W/ /g;
|
||||||
chomp($song[0]);
|
|
||||||
push(@temp,$song[0]."\n") if exists $hash{$song[1]};
|
foreach (@select){
|
||||||
|
$_ =~ s/\W/ /g;
|
||||||
|
if ( $song[2] =~ /$_/ ){push(@temp,$song[0]);}
|
||||||
}
|
}
|
||||||
open(DATEI, ">${General::swroot}/mpfire/playlist") || die "Could not add playlist";
|
}
|
||||||
|
|
||||||
|
open(DATEI, ">${General::swroot}/mpfire/playlist.m3u") || die "Could not add playlist";
|
||||||
print DATEI @temp;
|
print DATEI @temp;
|
||||||
close(DATEI);
|
close(DATEI);
|
||||||
$message=system("/usr/local/bin/mpfirectrl playall");
|
$message=system("/usr/local/bin/mpfirectrl playlist");
|
||||||
}
|
}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "playyear" )
|
elsif ( $mpfiresettings{'ACTION'} eq "playyear" )
|
||||||
{
|
{
|
||||||
my @temp = "";
|
my @temp = ""; my @song = ""; my @select = split(/\|/,$mpfiresettings{'year'});
|
||||||
my @year = split(/\|/,$mpfiresettings{'year'});
|
|
||||||
my %hash = map{ $_, 1 }@year;
|
|
||||||
|
|
||||||
foreach (@songdb){
|
foreach (keys(%songs)){
|
||||||
my @song = split(/\|/,$_);
|
@song = split(/\|/,$songs{$_});$song[6] =~ s/\W/ /g;
|
||||||
chomp($song[0]);
|
|
||||||
push(@temp,$song[0]."\n") if exists $hash{$song[5]};
|
foreach (@select){
|
||||||
|
$_ =~ s/\W/ /g;
|
||||||
|
if ( $song[6] =~ /$_/ ){push(@temp,$song[0]);}
|
||||||
}
|
}
|
||||||
open(DATEI, ">${General::swroot}/mpfire/playlist") || die "Could not add playlist";
|
}
|
||||||
|
|
||||||
|
open(DATEI, ">${General::swroot}/mpfire/playlist.m3u") || die "Could not add playlist";
|
||||||
print DATEI @temp;
|
print DATEI @temp;
|
||||||
close(DATEI);
|
close(DATEI);
|
||||||
$message=system("/usr/local/bin/mpfirectrl playall");
|
$message=system("/usr/local/bin/mpfirectrl playlist");
|
||||||
}
|
}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "playgenre" )
|
elsif ( $mpfiresettings{'ACTION'} eq "playgenre" )
|
||||||
{
|
{
|
||||||
my @temp = "";
|
my @temp = ""; my @song = ""; my @select = split(/\|/,$mpfiresettings{'genre'});
|
||||||
my @genre = split(/\|/,$mpfiresettings{'genre'});
|
|
||||||
my %hash = map{ $_, 1 }@genre;
|
|
||||||
|
|
||||||
foreach (@songdb){
|
foreach (keys(%songs)){
|
||||||
my @song = split(/\|/,$_);
|
@song = split(/\|/,$songs{$_});$song[7] =~ s/\W/ /g;
|
||||||
chomp($song[0]);
|
|
||||||
push(@temp,$song[0]."\n") if exists $hash{$song[6]};
|
foreach (@select){
|
||||||
|
$_ =~ s/\W/ /g;
|
||||||
|
if ( $song[7] =~ /$_/ ){push(@temp,$song[0]);}
|
||||||
}
|
}
|
||||||
open(DATEI, ">${General::swroot}/mpfire/playlist") || die "Could not add playlist";
|
|
||||||
print DATEI @temp;
|
|
||||||
close(DATEI);
|
|
||||||
$message=system("/usr/local/bin/mpfirectrl playall");
|
|
||||||
}
|
}
|
||||||
elsif ( $mpfiresettings{'ACTION'} eq "playall" )
|
|
||||||
{
|
open(DATEI, ">${General::swroot}/mpfire/playlist.m3u") || die "Could not add playlist";
|
||||||
my @temp = "";
|
|
||||||
foreach (@songdb){
|
|
||||||
my @song = split(/\|/,$_);
|
|
||||||
chomp($song[0]);
|
|
||||||
push(@temp,$song[0]."\n");
|
|
||||||
}
|
|
||||||
open(DATEI, ">${General::swroot}/mpfire/playlist") || die "Could not add playlist";
|
|
||||||
print DATEI @temp;
|
print DATEI @temp;
|
||||||
close(DATEI);
|
close(DATEI);
|
||||||
$message=system("/usr/local/bin/mpfirectrl playall");
|
$message=system("/usr/local/bin/mpfirectrl playlist");
|
||||||
}
|
}
|
||||||
elsif ( $mpfiresettings{'SHOWLIST'} ){delete $mpfiresettings{'__CGI__'};delete $mpfiresettings{'x'};delete $mpfiresettings{'y'};delete $mpfiresettings{'PAGE'};&General::writehash("${General::swroot}/mpfire/settings", \%mpfiresettings);refreshpage();}
|
elsif ( $mpfiresettings{'SHOWLIST'} ){delete $mpfiresettings{'__CGI__'};delete $mpfiresettings{'x'};delete $mpfiresettings{'y'};delete $mpfiresettings{'PAGE'};&General::writehash("${General::swroot}/mpfire/settings", \%mpfiresettings);refreshpage();}
|
||||||
|
|
||||||
############################################################################################################################
|
############################################################################################################################
|
||||||
################################### Aufbau der HTML Seite fr globale Sambaeinstellungen ####################################
|
################################### Aufbau der HTML Seite fr globale Sambaeinstellungen ####################################
|
||||||
|
|
||||||
$mpfiresettings{'SCANDIR'} = "/";
|
$mpfiresettings{'MUSICDIR'} = "/";
|
||||||
$mpfiresettings{'SHOWLIST'} = "off";
|
|
||||||
|
|
||||||
&General::readhash("${General::swroot}/mpfire/settings", \%mpfiresettings);
|
&General::readhash("${General::swroot}/mpfire/settings", \%mpfiresettings);
|
||||||
|
|
||||||
@@ -179,9 +200,7 @@ print <<END
|
|||||||
<form method='post' action='$ENV{'SCRIPT_NAME'}'>
|
<form method='post' action='$ENV{'SCRIPT_NAME'}'>
|
||||||
<table width='95%' cellspacing='0'>
|
<table width='95%' cellspacing='0'>
|
||||||
<tr bgcolor='$color{'color20'}'><td colspan='2' align='left'><b>$Lang::tr{'Scan for Files'}</b></td></tr>
|
<tr bgcolor='$color{'color20'}'><td colspan='2' align='left'><b>$Lang::tr{'Scan for Files'}</b></td></tr>
|
||||||
<tr><td align='left' width='40%'>$Lang::tr{'Scan from Directory'}</td><td align='left'><input type='text' name='SCANDIR' value='$mpfiresettings{'SCANDIR'}' size="30" /></td></tr>
|
<tr><td align='left' width='40%'>$Lang::tr{'Scan from Directory'}</td><td align='left'><input type='text' name='MUSICDIR' value='$mpfiresettings{'MUSICDIR'}' size="30" /></td></tr>
|
||||||
<tr><td align='left' width='40%'>$Lang::tr{'deep scan directories'}</td><td align='left'>on <input type='radio' name='SCANDIRDEPS' value='on' checked='checked'/>/
|
|
||||||
<input type='radio' name='SCANDIRDEPS' value='off'/> off</td></tr>
|
|
||||||
<tr><td align='center' colspan='2'><input type='hidden' name='ACTION' value='scan' />
|
<tr><td align='center' colspan='2'><input type='hidden' name='ACTION' value='scan' />
|
||||||
<input type='image' alt='$Lang::tr{'Scan for Files'}' title='$Lang::tr{'Scan for Files'}' src='/images/edit-find.png' /></td></tr>
|
<input type='image' alt='$Lang::tr{'Scan for Files'}' title='$Lang::tr{'Scan for Files'}' src='/images/edit-find.png' /></td></tr>
|
||||||
</table>
|
</table>
|
||||||
@@ -195,6 +214,8 @@ if ( $song eq "" ){$song = "None";}
|
|||||||
|
|
||||||
my $Volume = `/usr/local/bin/mpfirectrl volume`;
|
my $Volume = `/usr/local/bin/mpfirectrl volume`;
|
||||||
$Volume=~s/<break>/<br \/>/g;
|
$Volume=~s/<break>/<br \/>/g;
|
||||||
|
my $stats = `mpc stats | tail -4`;
|
||||||
|
$stats=~s/\\/<br \/>/g
|
||||||
|
|
||||||
&Header::openbox('100%', 'center', $Lang::tr{'mpfire controls'});
|
&Header::openbox('100%', 'center', $Lang::tr{'mpfire controls'});
|
||||||
print <<END
|
print <<END
|
||||||
@@ -203,13 +224,13 @@ print <<END
|
|||||||
<tr bgcolor='$color{'color20'}'> <td colspan='5' align='center'><marquee behavior='alternate' scrollamount='1' scrolldelay='5'><font color=red>-= $song =-</font></marquee></td></tr>
|
<tr bgcolor='$color{'color20'}'> <td colspan='5' align='center'><marquee behavior='alternate' scrollamount='1' scrolldelay='5'><font color=red>-= $song =-</font></marquee></td></tr>
|
||||||
END
|
END
|
||||||
;
|
;
|
||||||
if ( $#songdb eq '-1' ) {print "<tr><td colspan='5' align='center'><br/><b>total 0 songs</b><br/><br/></td></tr>";}
|
my $countsongs=`/usr/local/bin/mpfirectrl stats`;
|
||||||
else {print "<tr><td colspan='5' align='center'><br/><b>total $#songdb songs</b><br/><br/></td></tr>";}
|
print "<tr><td colspan='5' align='center'><br/><b>".$countsongs."</b><br/><br/></td></tr>";
|
||||||
print <<END
|
print <<END
|
||||||
<tr>
|
<tr>
|
||||||
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='x' /><input type='image' alt='$Lang::tr{'stop'}' title='$Lang::tr{'stop'}' src='/images/media-playback-stop.png' /></form></td>
|
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='x' /><input type='image' alt='$Lang::tr{'stop'}' title='$Lang::tr{'stop'}' src='/images/media-playback-stop.png' /></form></td>
|
||||||
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='||' /><input type='image' alt='$Lang::tr{'pause'}' title='$Lang::tr{'pause'}' src='/images/media-playback-pause.png' /></form></td>
|
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='<<' /><input type='image' alt='$Lang::tr{'prev'}' title='$Lang::tr{'prev'}' src='/images/media-skip-backward.png' /></form></td>
|
||||||
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='|>' /><input type='image' alt='$Lang::tr{'resume'}' title='$Lang::tr{'resume'}' src='/images/media-resume.png' /></form></td>
|
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='|>' /><input type='image' alt='$Lang::tr{'toggle'}' title='$Lang::tr{'toggle'}' src='/images/media-resume.png' /></form></td>
|
||||||
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='playall' /><input type='image' alt='$Lang::tr{'play'}' title='$Lang::tr{'play'}' src='/images/media-playback-start.png' /></form></td>
|
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='playall' /><input type='image' alt='$Lang::tr{'play'}' title='$Lang::tr{'play'}' src='/images/media-playback-start.png' /></form></td>
|
||||||
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='>>' /><input type='image' alt='$Lang::tr{'next'}' title='$Lang::tr{'next'}' src='/images/media-skip-forward.png' /></form></td>
|
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='>>' /><input type='image' alt='$Lang::tr{'next'}' title='$Lang::tr{'next'}' src='/images/media-skip-forward.png' /></form></td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -224,30 +245,14 @@ print <<END
|
|||||||
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='++' /><input type='image' alt='$Lang::tr{'volup10'}' title='$Lang::tr{'volup10'}' src='/images/audio-volume-high-red.png' /></form></td>
|
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='++' /><input type='image' alt='$Lang::tr{'volup10'}' title='$Lang::tr{'volup10'}' src='/images/audio-volume-high-red.png' /></form></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr><td colspan='5' align='center'>$Volume</td></tr>
|
<tr><td colspan='5' align='center'>$Volume</td></tr>
|
||||||
|
<tr><td colspan='5' align='center'><br />$stats</td></tr>
|
||||||
</table>
|
</table>
|
||||||
END
|
END
|
||||||
;
|
;
|
||||||
&Header::closebox();
|
&Header::closebox();
|
||||||
|
|
||||||
if ( $#songdb ne '0' ){
|
|
||||||
&Header::openbox('100%', 'center', $Lang::tr{'quick playlist'});
|
&Header::openbox('100%', 'center', $Lang::tr{'quick playlist'});
|
||||||
|
|
||||||
my @artist; my @album; my @genre; my @year;
|
|
||||||
foreach (@songdb){
|
|
||||||
my @song = split(/\|/,$_);
|
|
||||||
push(@artist,$song[1]); push(@album,$song[4]); push(@year,$song[5]); push(@genre,$song[6]);}
|
|
||||||
my %hash = map{ $_, 1 }@artist;
|
|
||||||
@artist = sort keys %hash;
|
|
||||||
my %hash = map{ $_, 1 }@album;
|
|
||||||
@album = sort keys %hash;
|
|
||||||
my %hash = map{ $_, 1 }@year;
|
|
||||||
@year = sort keys %hash;
|
|
||||||
my %hash = map{ $_, 1 }@genre;
|
|
||||||
@genre = sort keys %hash;
|
|
||||||
my $artistcount = $#artist+1;
|
|
||||||
my $albumcount = $#album+1;
|
|
||||||
my $yearcount = $#year+1;
|
|
||||||
my $genrecount = $#genre+1;
|
|
||||||
print "<table width='95%' cellspacing='0'>";
|
print "<table width='95%' cellspacing='0'>";
|
||||||
if ( $#songdb eq '-1' ) {print "<tr><td align='center' bgcolor='$color{'color20'}'><b>$Lang::tr{'artist'}</b></td><td align='center' bgcolor='$color{'color20'}'><b>$Lang::tr{'album'}</b></td></tr>";}
|
if ( $#songdb eq '-1' ) {print "<tr><td align='center' bgcolor='$color{'color20'}'><b>$Lang::tr{'artist'}</b></td><td align='center' bgcolor='$color{'color20'}'><b>$Lang::tr{'album'}</b></td></tr>";}
|
||||||
else {print "<tr><td align='center' bgcolor='$color{'color20'}'><b>$Lang::tr{'artist'} - ".$artistcount."</b></td><td align='center' bgcolor='$color{'color20'}'><b>$Lang::tr{'album'} - ".$albumcount."</b></td></tr>";}
|
else {print "<tr><td align='center' bgcolor='$color{'color20'}'><b>$Lang::tr{'artist'} - ".$artistcount."</b></td><td align='center' bgcolor='$color{'color20'}'><b>$Lang::tr{'album'} - ".$albumcount."</b></td></tr>";}
|
||||||
@@ -306,8 +311,6 @@ print <<END
|
|||||||
END
|
END
|
||||||
;
|
;
|
||||||
&Header::closebox();
|
&Header::closebox();
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if ( $mpfiresettings{'SHOWLIST'} eq "on" ){
|
if ( $mpfiresettings{'SHOWLIST'} eq "on" ){
|
||||||
|
|
||||||
@@ -319,7 +322,7 @@ print <<END
|
|||||||
<tr><td align='center' colspan='9'><br/>$Lang::tr{'Pages'}<br/><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='submit' name='PAGE' value='all' /><br/>
|
<tr><td align='center' colspan='9'><br/>$Lang::tr{'Pages'}<br/><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='submit' name='PAGE' value='all' /><br/>
|
||||||
END
|
END
|
||||||
;
|
;
|
||||||
my $pages =(int($#songdb/100)+1);
|
my $pages =(int(keys(%songs)/100)+1);
|
||||||
for(my $i = 1; $i <= $pages; $i++) {
|
for(my $i = 1; $i <= $pages; $i++) {
|
||||||
print "<input type='submit' name='PAGE' value='$i' />";
|
print "<input type='submit' name='PAGE' value='$i' />";
|
||||||
if (!($i % 205)){print"<br/>";}
|
if (!($i % 205)){print"<br/>";}
|
||||||
@@ -332,42 +335,37 @@ print <<END
|
|||||||
<td align='center'><b>$Lang::tr{'album'}</b></td>
|
<td align='center'><b>$Lang::tr{'album'}</b></td>
|
||||||
<td align='center'><b>$Lang::tr{'year'}</b></td>
|
<td align='center'><b>$Lang::tr{'year'}</b></td>
|
||||||
<td align='center'><b>$Lang::tr{'genre'}</b></td>
|
<td align='center'><b>$Lang::tr{'genre'}</b></td>
|
||||||
<td align='center'><b>$Lang::tr{'length'}<br/>$Lang::tr{'bitrate'} - $Lang::tr{'frequency'}</b></td>
|
<td align='center'><b>$Lang::tr{'length'}</b></td></tr>
|
||||||
<td align='center'><b>$Lang::tr{'mode'}</b></td></tr>
|
|
||||||
END
|
END
|
||||||
;
|
;
|
||||||
my $lines=0;my $i=0;my $begin;my $end;
|
my $lines=0;my $i=0;my $begin;my $end;
|
||||||
if ( $mpfiresettings{'PAGE'} eq 'all' ){
|
if ( $mpfiresettings{'PAGE'} eq 'all' ){
|
||||||
$begin=0;
|
$begin=0;
|
||||||
$end=$#songdb;
|
$end=keys(%songs);
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
$begin=(($mpfiresettings{'PAGE'}-1) * 100);
|
$begin=(($mpfiresettings{'PAGE'}-1) * 100);
|
||||||
$end=(($mpfiresettings{'PAGE'} * 100)-1);
|
$end=(($mpfiresettings{'PAGE'} * 100)-1);
|
||||||
}
|
}
|
||||||
foreach (@songdb){
|
foreach (keys(%songs)){
|
||||||
if (!($i >= $begin && $i <= $end)){
|
if (!($i >= $begin && $i <= $end)){
|
||||||
#print $begin."->".$i."<-".$end."\n";
|
# print $begin."->".$i."<-".$end."\n";
|
||||||
$i++;next;}
|
$i++;next;}
|
||||||
my @song = split(/\|/,$_);
|
my @song = split(/\|/,$songs{$_});
|
||||||
|
my $minutes = sprintf ("%.0f", $song[1] / 60 );
|
||||||
|
my $seconds = $song[1] % 60;
|
||||||
|
|
||||||
if ($lines % 2) {print "<tr bgcolor='$color{'color20'}'>";} else {print "<tr bgcolor='$color{'color22'}'>";}
|
if ($lines % 2) {print "<tr bgcolor='$color{'color20'}'>";} else {print "<tr bgcolor='$color{'color22'}'>";}
|
||||||
$song[0]=~s/\/\//\//g;
|
|
||||||
print <<END
|
print <<END
|
||||||
<td align='center' style="white-space:nowrap;"><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='addtoplaylist' /><input type='hidden' name='FILE' value="$song[0]" /><input type='image' alt='$Lang::tr{'add'}' title='$Lang::tr{'add'}' src='/images/list-add.png' /></form><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='>' /><input type='hidden' name='FILE' value="$song[0]" /><input type='image' alt='$Lang::tr{'play'}' title='$Lang::tr{'play'}' src='/images/media-playback-start.png' /></form></td>
|
<td align='center' style="white-space:nowrap;"><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='addtoplaylist' /><input type='hidden' name='FILE' value="$song[0]" /><input type='image' alt='$Lang::tr{'add'}' title='$Lang::tr{'add'}' src='/images/list-add.png' /></form><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='ACTION' value='>' /><input type='hidden' name='FILE' value="$song[0]" /><input type='image' alt='$Lang::tr{'play'}' title='$Lang::tr{'play'}' src='/images/media-playback-start.png' /></form></td>
|
||||||
<td align='center'>$song[1]<br/>$song[2]</td>
|
<td align='center'>$song[2]<br/>$song[3]</td>
|
||||||
<td align='center'>$song[3]</td>
|
|
||||||
<td align='center'>$song[4]</td>
|
|
||||||
<td align='center'>$song[5]</td>
|
<td align='center'>$song[5]</td>
|
||||||
|
<td align='center'>$song[4]</td>
|
||||||
<td align='center'>$song[6]</td>
|
<td align='center'>$song[6]</td>
|
||||||
<td align='center'>$song[7]:$song[8]<br/>$song[9] - $song[10]</td>
|
<td align='center'>$song[7]</td>
|
||||||
|
<td align='center'>$minutes:$seconds</td></tr>
|
||||||
END
|
END
|
||||||
;
|
;
|
||||||
if ( $song[11] eq "0\n" ) {print "<td align='center'>Stereo</td></tr>"; }
|
|
||||||
elsif ( $song[11] eq "1\n" ) {print "<td align='center'>Joint<br/>Stereo</td></tr>"; }
|
|
||||||
elsif ( $song[11] eq "2\n" ) {print "<td align='center'>Dual<br/>Channel</td></tr>"; }
|
|
||||||
elsif ( $song[11] eq "3\n" ) {print "<td align='center'>Single<br/>Channel</td></tr>"; }
|
|
||||||
else {print "<td align='center'></td></tr>"; }
|
|
||||||
$lines++;
|
$lines++;
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
@@ -377,16 +375,7 @@ print "</table>";
|
|||||||
|
|
||||||
&Header::openbox('100%', 'center', $Lang::tr{'mpfire playlist'});
|
&Header::openbox('100%', 'center', $Lang::tr{'mpfire playlist'});
|
||||||
|
|
||||||
open(DATEI, "<${General::swroot}/mpfire/playlist") || die "Could not open playlist";
|
my @playlist = `mpc playlist`;
|
||||||
my @playlist = <DATEI>;
|
|
||||||
close(DATEI);
|
|
||||||
|
|
||||||
my %hash;
|
|
||||||
foreach (@songdb){
|
|
||||||
my @song = split(/\|/,$_);
|
|
||||||
chomp($song[0]);
|
|
||||||
$hash{$song[0]}=$song[1]." - ".$song[2]." - ".$song[7].":".$song[8];
|
|
||||||
}
|
|
||||||
|
|
||||||
print <<END
|
print <<END
|
||||||
<table width='95%' cellspacing='0'>
|
<table width='95%' cellspacing='0'>
|
||||||
@@ -394,7 +383,7 @@ print <<END
|
|||||||
<tr><td align='center' colspan='2' ><textarea cols='100' rows='10' name='playlist' style='font-size:11px;width:650px;' readonly='readonly'>
|
<tr><td align='center' colspan='2' ><textarea cols='100' rows='10' name='playlist' style='font-size:11px;width:650px;' readonly='readonly'>
|
||||||
END
|
END
|
||||||
;
|
;
|
||||||
foreach (@playlist){chomp($_);print $hash{$_}."\n";}
|
foreach (@playlist){print $_;}
|
||||||
print <<END
|
print <<END
|
||||||
</textarea></td></tr><tr>
|
</textarea></td></tr><tr>
|
||||||
<td align='right'>
|
<td align='right'>
|
||||||
@@ -429,7 +418,7 @@ END
|
|||||||
foreach (@webradio){
|
foreach (@webradio){
|
||||||
my @stream = split(/\|/,$_);
|
my @stream = split(/\|/,$_);
|
||||||
print <<END
|
print <<END
|
||||||
<tr><td>$stream[1]</td>
|
<tr><td><a href="$stream[2]">$stream[1]</a></td>
|
||||||
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='FILE' value='$stream[0]' /><input type='hidden' name='ACTION' value='playweb' /><input type='image' alt='$Lang::tr{'play'}' title='$Lang::tr{'play'}' src='/images/media-playback-start.png' /></form></td>
|
<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='FILE' value='$stream[0]' /><input type='hidden' name='ACTION' value='playweb' /><input type='image' alt='$Lang::tr{'play'}' title='$Lang::tr{'play'}' src='/images/media-playback-start.png' /></form></td>
|
||||||
</tr>
|
</tr>
|
||||||
END
|
END
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 464 B |
BIN
html/html/images/media-skip-backward.png
Normal file
BIN
html/html/images/media-skip-backward.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 576 B |
@@ -1245,7 +1245,6 @@
|
|||||||
'passwords do not match' => 'Die Passwörter stimmen nicht überein.',
|
'passwords do not match' => 'Die Passwörter stimmen nicht überein.',
|
||||||
'passwords must be at least 6 characters in length' => 'Passwörter müssen mind. 6 Zeichen lang sein',
|
'passwords must be at least 6 characters in length' => 'Passwörter müssen mind. 6 Zeichen lang sein',
|
||||||
'path to directory' => 'Pfad zur Freigabe',
|
'path to directory' => 'Pfad zur Freigabe',
|
||||||
'pause' => 'Pause',
|
|
||||||
'pc' => 'PC',
|
'pc' => 'PC',
|
||||||
'pc add' => 'PC hinzufügen',
|
'pc add' => 'PC hinzufügen',
|
||||||
'pdc options' => 'PDC Optionen',
|
'pdc options' => 'PDC Optionen',
|
||||||
@@ -1270,6 +1269,7 @@
|
|||||||
'pre-shared key is too short' => 'Pre-shared Schlüsel ist zu kurz',
|
'pre-shared key is too short' => 'Pre-shared Schlüsel ist zu kurz',
|
||||||
'prefered master' => 'Prefered Master',
|
'prefered master' => 'Prefered Master',
|
||||||
'present' => 'Vorhanden',
|
'present' => 'Vorhanden',
|
||||||
|
'prev' => 'Vorheriger',
|
||||||
'primary dns' => 'Primärer DNS:',
|
'primary dns' => 'Primärer DNS:',
|
||||||
'primary ntp server' => 'Primärer NTP-Server',
|
'primary ntp server' => 'Primärer NTP-Server',
|
||||||
'primary wins server address' => 'Primäre WINS-Server Adresse',
|
'primary wins server address' => 'Primäre WINS-Server Adresse',
|
||||||
@@ -1347,7 +1347,6 @@
|
|||||||
'restore defaults' => 'Voreinstellungen wiederherstellen',
|
'restore defaults' => 'Voreinstellungen wiederherstellen',
|
||||||
'restore hardware settings' => 'Hardware-Einstellungen wiederherstellen',
|
'restore hardware settings' => 'Hardware-Einstellungen wiederherstellen',
|
||||||
'restore settings' => 'Einstellungen wiederherstellen',
|
'restore settings' => 'Einstellungen wiederherstellen',
|
||||||
'resume' => 'Resume',
|
|
||||||
'reverse sort' => 'In umgekehrter chronologischer Reihenfolge sortieren',
|
'reverse sort' => 'In umgekehrter chronologischer Reihenfolge sortieren',
|
||||||
'root' => 'Root',
|
'root' => 'Root',
|
||||||
'root certificate' => 'Root-Zertifikat',
|
'root certificate' => 'Root-Zertifikat',
|
||||||
@@ -1540,6 +1539,7 @@
|
|||||||
'to email adr' => 'An Email Adresse',
|
'to email adr' => 'An Email Adresse',
|
||||||
'to install an update' => 'Um ein Update zu installieren, laden Sie zuerst die folgende .tgz.gpg Datei hoch:',
|
'to install an update' => 'Um ein Update zu installieren, laden Sie zuerst die folgende .tgz.gpg Datei hoch:',
|
||||||
'to warn email bad' => 'An Email Adresse ist nicht gültig',
|
'to warn email bad' => 'An Email Adresse ist nicht gültig',
|
||||||
|
'toggle' => 'Pause/Resume',
|
||||||
'toggle enable disable' => 'Aktivieren oder Deaktivieren',
|
'toggle enable disable' => 'Aktivieren oder Deaktivieren',
|
||||||
'tone' => 'Ton',
|
'tone' => 'Ton',
|
||||||
'tone dial' => 'Tonwahl:',
|
'tone dial' => 'Tonwahl:',
|
||||||
|
|||||||
@@ -1273,7 +1273,6 @@
|
|||||||
'passwords do not match' => 'Passwords do not match.',
|
'passwords do not match' => 'Passwords do not match.',
|
||||||
'passwords must be at least 6 characters in length' => 'Passwords must be at least 6 characters in length',
|
'passwords must be at least 6 characters in length' => 'Passwords must be at least 6 characters in length',
|
||||||
'path to directory' => 'path to share',
|
'path to directory' => 'path to share',
|
||||||
'pause' => 'pause',
|
|
||||||
'pc' => 'Workstatipon',
|
'pc' => 'Workstatipon',
|
||||||
'pc add' => 'add workstation',
|
'pc add' => 'add workstation',
|
||||||
'pdc options' => 'PDC Options',
|
'pdc options' => 'PDC Options',
|
||||||
@@ -1298,6 +1297,7 @@
|
|||||||
'pre-shared key is too short' => 'Pre-shared key is too short.',
|
'pre-shared key is too short' => 'Pre-shared key is too short.',
|
||||||
'prefered master' => 'Prefered Master',
|
'prefered master' => 'Prefered Master',
|
||||||
'present' => 'Present',
|
'present' => 'Present',
|
||||||
|
'prev' => 'previous',
|
||||||
'primary dns' => 'Primary DNS:',
|
'primary dns' => 'Primary DNS:',
|
||||||
'primary ntp server' => 'Primary NTP Server',
|
'primary ntp server' => 'Primary NTP Server',
|
||||||
'primary wins server address' => 'Primary WINS Server address',
|
'primary wins server address' => 'Primary WINS Server address',
|
||||||
@@ -1376,7 +1376,6 @@
|
|||||||
'restore defaults' => 'Restore defaults',
|
'restore defaults' => 'Restore defaults',
|
||||||
'restore hardware settings' => 'Restore hardware settings',
|
'restore hardware settings' => 'Restore hardware settings',
|
||||||
'restore settings' => 'Reset Settings',
|
'restore settings' => 'Reset Settings',
|
||||||
'resume' => 'resume',
|
|
||||||
'reverse sort' => 'Sort in reverse chronological order',
|
'reverse sort' => 'Sort in reverse chronological order',
|
||||||
'root' => 'Root',
|
'root' => 'Root',
|
||||||
'root certificate' => 'Root Certificate',
|
'root certificate' => 'Root Certificate',
|
||||||
@@ -1572,6 +1571,7 @@
|
|||||||
'to email adr' => 'To Email address',
|
'to email adr' => 'To Email address',
|
||||||
'to install an update' => 'To install an update please upload the .tgz.gpg file below:',
|
'to install an update' => 'To install an update please upload the .tgz.gpg file below:',
|
||||||
'to warn email bad' => 'To email address is not valid',
|
'to warn email bad' => 'To email address is not valid',
|
||||||
|
'toggle' => 'pause/resume',
|
||||||
'toggle enable disable' => 'Enable or Disable',
|
'toggle enable disable' => 'Enable or Disable',
|
||||||
'tone' => 'Tone',
|
'tone' => 'Tone',
|
||||||
'tone dial' => 'Tone dial:',
|
'tone dial' => 'Tone dial:',
|
||||||
|
|||||||
13
lfs/mpfire
13
lfs/mpfire
@@ -30,9 +30,9 @@ THISAPP = mpfire-$(VER)
|
|||||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||||
PROG = mpfire
|
PROG = mpfire
|
||||||
PAK_VER = 1
|
PAK_VER = 2
|
||||||
|
|
||||||
DEPS = "mpg123 alsa"
|
DEPS = "mpd mpc alsa libshout libogg libmad libid3tag"
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Top-level Rules
|
# Top-level Rules
|
||||||
@@ -58,9 +58,12 @@ dist:
|
|||||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||||
@$(PREBUILD)
|
@$(PREBUILD)
|
||||||
-mkdir -p /var/ipfire/mpfire/{bin,db}
|
-mkdir -p /var/ipfire/mpfire/{bin,db}
|
||||||
touch /var/ipfire/mpfire/{settings,playlist}
|
touch /var/ipfire/mpfire/{settings,playlist.m3u}
|
||||||
touch /var/ipfire/mpfire/db/songs.db
|
touch /var/ipfire/mpfire/db/mpd.db
|
||||||
chown nobody.nobody /var/ipfire/mpfire/{settings,playlist}
|
touch /var/log/mpd_error.log
|
||||||
|
touch /var/log/mpd.log
|
||||||
install -v -m 755 $(DIR_SRC)/config/mpfire/mpfire.pl /var/ipfire/mpfire/bin
|
install -v -m 755 $(DIR_SRC)/config/mpfire/mpfire.pl /var/ipfire/mpfire/bin
|
||||||
|
install -v -m 644 $(DIR_SRC)/config/mpfire/mpd.conf /var/ipfire/mpfire/
|
||||||
install -v -m 644 $(DIR_SRC)/config/mpfire/webradio /var/ipfire/mpfire/
|
install -v -m 644 $(DIR_SRC)/config/mpfire/webradio /var/ipfire/mpfire/
|
||||||
|
chown nobody.nobody /var/ipfire/mpfire/{settings,playlist.m3u,webradio,mpd.conf}
|
||||||
@$(POSTBUILD)
|
@$(POSTBUILD)
|
||||||
|
|||||||
Reference in New Issue
Block a user