This file is indexed.

/usr/share/gmusicbrowser/plugins/karaoke.pm is in gmusicbrowser 1.1.9-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# Copyright (C) 2009 Quentin Sculo <squentin@free.fr>
#
# This file is part of Gmusicbrowser.
# Gmusicbrowser is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation

=for gmbplugin Karaoke
name	Karaoke
title	Karaoke plugin
desc	Display synchronized lyrics of the current song
=cut

package GMB::Plugin::Karaoke;
use strict;
use warnings;
use base 'Gtk2::Label';
use constant
{	OPT	=> 'PLUGIN_Karaoke_', # MUST begin by PLUGIN_ followed by the plugin ID / package name
};

::SetDefaultOptions(OPT, PathFile => "~/.lyrics/%a - %t.lrc",);

my $lyricswidget=
{	class		=> __PACKAGE__,
	font		=> 20,
	schange		=> \&SongChanged,
	group		=> 'Play',
	autoadd_type	=> 'context label lyrics',
	event		=> 'Time',
	update		=> \&TimeChanged,
};

sub Start
{	Layout::RegisterWidget(PluginKaraoke => $lyricswidget);
}
sub Stop
{	Layout::RegisterWidget(PluginKaraoke => undef);
}
sub prefbox
{	my $vbox=Gtk2::VBox->new(::FALSE, 2);
	my $entry=::NewPrefEntry(OPT.'PathFile' => _"Pattern to find .lrc files :", width=>30);
	my $preview= Label::Preview->new(preview => \&filename_preview, event => 'CurSong Option', noescape=>1, wrap=>1);
	my $showbutton= Gtk2::Button->new(_"Show/Hide lyrics line");
	$showbutton->signal_connect(clicked=> sub { ::OpenSpecialWindow('Karaoke',1); });
	$vbox->pack_start($_,::FALSE,::FALSE,1) for $entry,$preview,$showbutton;
	return $vbox;
}


sub new
{	my ($class,$opt)=@_;
	my $self = bless Gtk2::Label->new, $class;
	$self->modify_font(Gtk2::Pango::FontDescription->from_string($opt->{font})) if $opt->{font};
	$self->{attr}= $opt->{attr};
	$self->{after}=  $opt->{after} || $opt->{context};
	$self->{before}= $opt->{before}|| $opt->{context};
	$self->{after_attr}=  $opt->{after_attr} || $opt->{context_attr};
	$self->{before_attr}= $opt->{before_attr}|| $opt->{context_attr};
	#$self->set_line_wrap(1);
	return $self;
}

sub filename_preview
{	return '' unless defined $::SongID;
	my $t=::pathfilefromformat( $::SongID, $::Options{OPT.'PathFile'}, undef,1);
	$t= ::filename_to_utf8displayname($t) if $t;
	$t= $t ? ::PangoEsc(_("example : ").$t) : "<i>".::PangoEsc(_"invalid pattern")."</i>";
	return '<small>'.$t.'</small>';
}

sub SongChanged
{	my ($self,$ID,$force)=@_;
	return unless defined $ID;
	return if defined $self->{ID} && !$force && ( $ID==$self->{ID} );
	$self->{ID}=$ID;
	$self->{seconds}=undef;
	$self->{lasttime}=-1;
	$self->set_text('');

	my $file=::pathfilefromformat( $self->{ID}, $::Options{OPT.'PathFile'}, undef,1 );
	if ($file && -r $file)
	{	::IdleDo('7_lyrics'.$self,500,\&load_file,$self,$file);
	}
}

sub load_file
{	my ($self,$file)=@_;
	my $text='';
	if (open my$fh,'<',$file)
	{	local $/=undef; #slurp mode
		$text=<$fh>;
		close $fh;
		if (my $utf8=Encode::decode_utf8($text)) {$text=$utf8}
	}
	else {return}
	my $offset=0;
	my $needsort;
	my $lines= $self->{lines}=[];
	my $seconds= $self->{seconds}=[];
	for my $l (split /\012|\015|\015\012/,$text)
	{	if ($l=~m/^\[offset:([+-]?\d+)\]/) { $offset=$1/1000 } #Overall timestamp adjustment in milliseconds
		else	#look for format : [mm:ss.xx]lyrics line
		{	my $i=0;	#loop for cases : [mm:ss.xx][mm:ss.xx][mm:ss.xx]repeated line
			while ($l=~s/^\[(\d?\d):(\d\d)(?:\.(\d\d)\d?)?\]//) { push @$seconds, $offset+$1*60+$2+($3||0)/100; $i++ }
			push @$lines, ($l)x$i;
			$needsort=1 if $i>1;
		}
	}
	if ($needsort) #for repeated lines, as they are not properly ordered
	{	@$lines=map $lines->[$_], sort { $seconds->[$a] <=> $seconds->[$b] } 0..$#$lines;
		@$seconds=sort { $a<=>$b } @$seconds;
	}
	$self->TimeChanged;
}

sub TimeChanged
{	my $self=$_[0];
	return unless $self->{seconds};
	my $time=$::PlayTime;
	if (!defined $time) { $self->set_text(''); return }
	my $seconds= $self->{seconds};
	my $i=0;
	$i++ while $i<@$seconds && $seconds->[$i]<$time;
	$i--;
	return if $self->{lasttime}==$i;	#no need to re-display the line
	$self->{lasttime}=$i;
	my $lines= $self->{lines};
	my $line= $i>=0 ? $lines->[$i] : '';
	if ($line=~m/<\d?\d:\d\d(?:\.\d\d\d?)?>/)	#Enhanced LRC format
	{	# $line : <mm:ss.xx> word1 <mm:ss.xx> word2 <mm:ss.xx> ... lastword <mm:ss.xx>
		my @words= (0,0,0, split /<(\d?\d):(\d\d)(?:\.(\d\d)\d?)?>/, $line,-1);
		$self->{lasttime}=-1;
		$line='';
		my $prev='';
		my $found;
		while (@words>3)
		{	my ($m,$s,$c,$word)=splice @words,0,4;
			if ( !$found && $time < $m*60+$s+($c||0)/100 ) {$prev="<b>$prev</b>"; $found=1}
			$line.=$prev;
			$prev= ::PangoEsc($word);
		}
		$line.=$prev;
	}
	else { $line=::PangoEsc($line); }
	$line= "<span $self->{attr}>$line</span>" if $self->{attr};
	if (my $n=$self->{before})
	{	my $text=join "\n", map {$_>0 ? $lines->[$_] : ''}  $i-$n .. $i-1;
		$text=~s/\s*<\d?\d:\d\d(?:\.\d\d\d?)?>\s*/ /g;
		$text=::PangoEsc($text);
		$text= "<span $self->{before_attr}>$text</span>" if $self->{before_attr};
		$line= $text."\n".$line;
	}
	if (my $n=$self->{after})
	{	my $text =join "\n", map {$_<@$lines ? $lines->[$_] : ''}  $i+1 .. $i+$n;
		$text=~s/\s*<\d?\d:\d\d(?:\.\d\d\d?)?>\s*/ /g;
		$text=::PangoEsc($text);
		$text= "<span $self->{after_attr}>$text</span>" if $self->{after_attr};
		$line.= "\n".$text;
	}
	$self->set_markup($line);
}

1