Re: [mythtv-users] mythmusic not resolving cd information

2006-01-17 Thread Ronald Wielink
Josh,
This tip works like a charm! In my case, ripping cd's froze in approx. one third of all attempts. Ergo: searching the archives works. I think this tip is worth including in troubleshooting sections about getting mythtv up and running...

 
Ronald 
On 2/23/05, Josh Burks <[EMAIL PROTECTED]> wrote:
On Fri, 28 Jan 2005 22:00:39 -0500, Charles Waddell<[EMAIL PROTECTED]
> wrote:> I cannot get mythmusic to resolve any information about cd's. I currently> have automatically import information checked under setup->music->general.> Upon consulting Google, I was told that I might deleting my .cddbserverrc
> file and .cddb directory. they both were readded upon restarting mythmusic,> but they still did not resolve any information. the cddb resource I am using> is hosted at freedb. Is there another db I could use or does anybody have
> any advice on how to error check this problem.>I was having similar problems. In the .cdserverrc file, I changed theACCESS and SERVER lines to read as follows:ACCESS=REMOTESERVER=
cddb://freedb.freedb.org:8880/~cddb/cddb.cgi CDDBThe above was:SERVER=http://freedb.freedb.org:80/~cddb/cddb.cgi CDDBApparently, my KDE Control Center wasn't changing the .cdserverrc file
correctly, so I hand-edited it.YMMV,Josh___mythtv-users mailing listmythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic AlbumArt

2006-01-07 Thread Brad DerManouelian

On Jan 7, 2006, at 5:45 AM, Andrew Wilson wrote:


Is it possible to use album art to select which music to play? - ie
click on the album cover to play the album... I couldn't see how to do
this in myth music (or any other linux music program)


No. 
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic AlbumArt

2006-01-07 Thread Andrew Wilson
Is it possible to use album art to select which music to play? - ie
click on the album cover to play the album... I couldn't see how to do
this in myth music (or any other linux music program)
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic AlbumArt

2006-01-06 Thread Brad DerManouelian
All the free ones I found have links that don't resolve. Luckily, I  
don't need them any more.


On Jan 6, 2006, at 7:43 PM, Kevin Kuphal wrote:


Brad DerManouelian wrote:

I was trying to find a script to automatically add album art to  
my  MythMusic directories. I came across the one in this thread:  
http:// www.gossamer-threads.com/lists/mythtv/users/140895 but it  
only adds  art as you RIP a CD. I have way too many albums already  
ripped so  this wasn't going to work for me.


There are a number of Linux programs that will download your entire  
music tree of album art, even some for Windows and put it into the  
folder appropriate for the Album Art vizualization to use.  I'm  
sure a quick google will reveal them.


Kevin
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic AlbumArt

2006-01-06 Thread Kevin Kuphal

Brad DerManouelian wrote:

I was trying to find a script to automatically add album art to my  
MythMusic directories. I came across the one in this thread: http:// 
www.gossamer-threads.com/lists/mythtv/users/140895 but it only adds  
art as you RIP a CD. I have way too many albums already ripped so  
this wasn't going to work for me.


There are a number of Linux programs that will download your entire 
music tree of album art, even some for Windows and put it into the 
folder appropriate for the Album Art vizualization to use.  I'm sure a 
quick google will reveal them.


Kevin
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic AlbumArt

2006-01-06 Thread Matt Hannan

Brad DerManouelian wrote:
I was trying to find a script to automatically add album art to my  
MythMusic directories. I came across the one in this thread: http:// 
www.gossamer-threads.com/lists/mythtv/users/140895 but it only adds  
art as you RIP a CD. I have way too many albums already ripped so  
this wasn't going to work for me.


So I wrote a little script to use in concert with Paul's amazon.pl  
script. Now I can use the AlbumArt visualization and see most of my  
collection. I'm posting it here in case anyone's in the same boat as  
me. The script assumes you have your music organized by musicroot/ 
artist/album. It will also detect when album art can't be found and  
skips it if it runs across the album name again during the same run  
(in the event that you have albums with many artists on a single  
album and you're strictly organizing by artist/album). It's also  
smart enough to skip an album if the art is already there (from a  
previous run). Feel free to mod as needed.


Make sure amazon.pl is in your path, then pass your music directory  
root as an argument to this script (e.g. ./albumart.pl /mythtv/music/):



#!/usr/bin/perl -w
use strict;

my $musicdir = shift || die( "Specify the music directory root\n" );
$musicdir =~ s/\/$//g;
my @albumsnoart;

opendir MYDIR, $musicdir || die( "Couldn't open $musicdir\n" );
my @artists = grep !/^\.\.?$/, readdir MYDIR;
closedir MYDIR;

foreach my $artist ( @artists )
{
my $artistdir = $musicdir."/".$artist;
if ( -d $artistdir )
{
next if $artist eq "Compilations";
opendir MYDIR, $artistdir || die( "Couldn't open $artistdir 
\n" );

my @albums = grep !/^\.\.?$/, readdir MYDIR;
closedir MYDIR;
foreach my $album ( @albums )
{
next if ( grep(/$album/,@albumsnoart) );
my $albumdir = $artistdir."/".$album;
if ( -d $albumdir )
{
print "Grabbing art for $artist - $album...";
if (-f $albumdir."/folder_large.jpg" )
{
print "SKIPPING: I already have art for this  
album.\n";

next;
}
`amazon.pl "$musicdir/$artist/$album" "$artist"  
"$album"`;

if ( -f $albumdir."/folder_large.jpg" )
{
print "DONE\n";
}
else
{
print "NOT FOUND: Sorry, no album art found.\n";
push( @albumsnoart, $album );
}
}
}
}
}



Also, I had to patch amazon.pl with this so the script won't bail  
when it can't find any art:

--- amazon.pl   2006-01-06 18:16:00.0 -0500
+++ /usr/local/bin/amazon.pl2006-01-06 06:48:22.0 -0500
@@ -116,6 +116,8 @@
$titleid++;

my $image = get $ama_uri if (defined($ama_uri) && $ama_uri ne "");
+if ( $image )
+{
if ($ama_uri ne "" && length($image) eq "807") {
   if (defined $opt_d) { printf("# this image is blank\n"); }
   $ama_uri = "";
@@ -138,7 +140,7 @@
close INFO;
}
-
+}
#
# Main Program
#


-Brad



___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
  

Must...not...say...anything.
Must...resist.
Tempat...ion too...strong...

Doesn't iTunes do this automatically?
BWAHAAHAHAHAHAHAHAHA!
Sorry, dude. I had to!

Thanks for the script. If I get my mess straight, I will try it out.

Matt
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic takes forever to "Loading Music" and never finishes.

2005-12-24 Thread Steve Adeff
On Friday 23 December 2005 13:54, Wendy Seltzer wrote:
> It hasn't been fixed, as of svn 8350.  The earlier efforts to fix haven't
> resolved it.  Please, add to the ticket if you have any additional
> information that might help in tracking down the bug.
>
> Do you have a large music collection?  I'm guessing this is some sort of
> race condition that doesn't show up until the progress bar is up for a long
> time.
>
> --Wendy

I'll rebuild with debug and to a gdb trace when I get back from holiday vaca.

large collection, yes, ~140gigs.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic takes forever to "Loading Music" and never finishes.

2005-12-23 Thread Wendy Seltzer
It hasn't been fixed, as of svn 8350.  The earlier efforts to fix
haven't resolved it.  Please, add to the ticket if you have any
additional information that might help in tracking down the bug.

Do you have a large music collection?  I'm guessing this is some
sort of race condition that doesn't show up until the progress bar is
up for a long time.

--WendyOn 12/14/05, Steve Adeff <[EMAIL PROTECTED]> wrote:
On Wednesday 14 December 2005 20:43, Michael T. Dean wrote:> Steve Adeff wrote:> >I end up having to kill the process.> >nothing in the logs. its just gets to some % and never moves... top shows
> > no cpu usage either.> >> >I went into the MythMusic Setup and rescanned my music and that finished> > fine, but its the loading of the music that freezes.>> If you're using SVN, upgrade.  There was a ticket for this problem and
> it may have been fixed.  I can't tell because the Trac server is having> a locked database problem...  (Or, you can wait for the Trac server and> check the ticket's status.)>> Mike
Hrmm, I'm running 8199 which should have this fixed if I'm reading the ticketscorrectly...Steve___mythtv-users mailing list
mythtv-users@mythtv.orghttp://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users-- Wendy Seltzer
http://wendy.seltzer.org/blog/
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic skipping

2005-12-21 Thread Nick
On 21/12/05, David Peeters <[EMAIL PROTECTED]> wrote:
> I've searched several boards and haven't found any usefull information
> regarding my problem.
>
> when playing .mp3s or ogg files in MythMusic, I get annoying skips every so
> often (usually one or two every 2 to 5 minutes). The skips are barely a half
> second long and its just like the audio stops playing for a moment.
>
> I'm running KnoppMyth R5A22 and using a Sound Blaster Live! SPDIF output.
> The soundcard is not used by MythTV playback since I have a tuner card for
> that.
>
> CPU usage does not seem to effect the skipping (It still skips with a 90%
> idle cpu).
>
> I've tried lower bitrate mp3s, but they have the same problem.
>
> mp3s don't always skip at the same place, so it's definately not a problem
> with a skip in the physical file.
>
> Does anyone know of a possible reason this could happen? I haven't seen
> anything strange in the logs, but I'm not experienced with linux so there
> might be something there and I wouldn't know it.

I've posted a couple of times about skipping in MythMusic (I get skips
of up to 20s randomly during playback). There were no replies, so I
figured no-one else was seeing this issue. I am upgrading a system in
the next few days to see whether a new version of Fedora/libraries
will cure the problem. The machine I see this on is running FC2 and
MythTV 0.18.1 from atrpms.net.

I am also outputting via SPDIF, but I got skipping previously when
using analog output too. The files play fine on my Windows machines in
WinAMP, so again like you, I'm pretty sure the files are good (tried
with 44.1kHz and 48kHz files). Again, no messages in the logs and no
problems when playing the files back in xine (also via SPDIF)

Nick
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic Visualizations: Switching back and forth?

2005-12-19 Thread Valerian Mayega
Thanks.

Will give it a shot tonite.
On 12/18/05, Dr. C Mythology <[EMAIL PROTECTED]> wrote:
Yup, try pressing the button 6.On 12/19/05, Valerian Mayega <
[EMAIL PROTECTED]> wrote:

Is there a way to switch between various visualizations while usingmythmusic wtih visualizations in full screen mode?Thanks.regards,+Valerian___

mythtv-users mailing listmythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


___mythtv-users mailing listmythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic Visualizations: Switching back and forth?

2005-12-18 Thread Dr. C Mythology
Yup, try pressing the button 6.On 12/19/05, Valerian Mayega <[EMAIL PROTECTED]> wrote:
Is there a way to switch between various visualizations while usingmythmusic wtih visualizations in full screen mode?Thanks.regards,+Valerian___
mythtv-users mailing listmythtv-users@mythtv.orghttp://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic takes forever to "Loading Music" and never finishes.

2005-12-14 Thread Steve Adeff
On Wednesday 14 December 2005 20:43, Michael T. Dean wrote:
> Steve Adeff wrote:
> >I end up having to kill the process.
> >nothing in the logs. its just gets to some % and never moves... top shows
> > no cpu usage either.
> >
> >I went into the MythMusic Setup and rescanned my music and that finished
> > fine, but its the loading of the music that freezes.
>
> If you're using SVN, upgrade.  There was a ticket for this problem and
> it may have been fixed.  I can't tell because the Trac server is having
> a locked database problem...  (Or, you can wait for the Trac server and
> check the ticket's status.)
>
> Mike

Hrmm, I'm running 8199 which should have this fixed if I'm reading the tickets 
correctly...

Steve
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic takes forever to "Loading Music" and never finishes.

2005-12-14 Thread Michael T. Dean

Steve Adeff wrote:


I end up having to kill the process.
nothing in the logs. its just gets to some % and never moves... top shows no 
cpu usage either.


I went into the MythMusic Setup and rescanned my music and that finished fine, 
but its the loading of the music that freezes.
 

If you're using SVN, upgrade.  There was a ticket for this problem and 
it may have been fixed.  I can't tell because the Trac server is having 
a locked database problem...  (Or, you can wait for the Trac server and 
check the ticket's status.)


Mike
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic and MythVideo on Debian unstable

2005-11-30 Thread Ben Holt
On 30/11/05, Kyle Gordon <[EMAIL PROTECTED]> wrote:

> Except it all bails out here since the dijkstra sources are fubared.
> Thankfully they can be downloaded manually from the mythtv.old directory.

Ah yes, I see what you mean :-(.

http://dijkstra.csh.rit.edu/~mdz/debian/dists/unstable/mythtv/README

- Ben

--
A: Because it destroys the flow of conversation.
Q: Why is top posting dumb?
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic and MythVideo on Debian unstable

2005-11-30 Thread Kyle Gordon

Ben Holt wrote:

On 29/11/05, Kyle Gordon <[EMAIL PROTECTED]> wrote:


On Tuesday 29 Nov 2005 17:46, Chris Hubball wrote:




libqt3c102-mt has been replaced by libqt3-mt, but the packages haven't been
updated yet. There is some transition under way for the Debian packages, but
I have no idea what, when, or where.



I ran into this problem too. The best fix is to build from source:

apt-get build-dep mythplugins
(will install the necessary build dependencies)


Except it all bails out here since the dijkstra sources are fubared. 
Thankfully they can be downloaded manually from the mythtv.old directory.


Regards

Kyle

--
Kyle Gordon
[EMAIL PROTECTED]
http://lodge.glasgownet.com

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic and MythVideo on Debian unstable

2005-11-30 Thread Ben Holt
On 29/11/05, Kyle Gordon <[EMAIL PROTECTED]> wrote:
> On Tuesday 29 Nov 2005 17:46, Chris Hubball wrote:

>
> libqt3c102-mt has been replaced by libqt3-mt, but the packages haven't been
> updated yet. There is some transition under way for the Debian packages, but
> I have no idea what, when, or where.

I ran into this problem too. The best fix is to build from source:

apt-get build-dep mythplugins
(will install the necessary build dependencies)

apt-get -b source mythplugins
(will build the plugins packages)

dpkg -i 
(will install the various packages)

HTH

- Ben

--
A: Because it destroys the flow of conversation.
Q: Why is top posting dumb?
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic and MythVideo on Debian unstable

2005-11-30 Thread Kyle Gordon
On Tuesday 29 Nov 2005 17:46, Chris Hubball wrote:
> Hello,
>
> I'm running Debian unstable and it seems that for the last month or so
> MythMusic and MythVideo have a broken dependency.
>
> Sorry, I can't remember the exact error, but it appears that a QT package
> (something like libqt2) has been renamed or changed.
>

libqt3c102-mt has been replaced by libqt3-mt, but the packages haven't been 
updated yet. There is some transition under way for the Debian packages, but 
I have no idea what, when, or where.

> I can force the packages to install and both Music and Video work fine,
> however some of the visualisations (like Goom) don't work.
>
> Has anybody else seen this and has it been fixed?  If so, is there a
> better place to get the Debian packages from?
>
> Chris.
>
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

Kyle

-- 
Kyle Gordon
[EMAIL PROTECTED]
http://lodge.glasgownet.com
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic and Mythweb

2005-11-29 Thread sarvinc
On Tuesday 29 November 2005 07:53 pm, Mike Daugird wrote:
> Michael T. Dean wrote:
> >Mike Daugird wrote:
> >>I like to listen to music while I surf the web.
> >>right now I get out of mythfrontend and start xmms, and firefox.
> >>
> >>is it possible to have mythmusic keep playing while looking at news feeds
> >> or mythweb?
> >
> >Not yet, but that's the plan for MFD.
> >
> >Note, though, that you could just leave MythMusic playing while you
> >start FireFox...
> >
> >Mike
>
> firefox has a plugin that lets me control xmms from the browser status bar,
> so if I have to launch firefox I am going to use xmms automatically...

If you're talking about foxytune then there's support for more than just xmms. 
Also you can set up lirc events for xmms with xmms-lirc
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic and Mythweb

2005-11-29 Thread Michael T. Dean

Mike Daugird wrote:


I like to listen to music while I surf the web.
right now I get out of mythfrontend and start xmms, and firefox.

is it possible to have mythmusic keep playing while looking at news feeds or 
mythweb?
 


Not yet, but that's the plan for MFD.

Note, though, that you could just leave MythMusic playing while you 
start FireFox...


Mike
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic volume

2005-11-29 Thread Joe Garcia
And the fix

In the general setup for mythmusic

Select "Audio device:" and hit the backspace key to delete what is
there.  Type in "ALSA:default".  Click through to finish to save. 
Rejoice in newfound happiness that the volume control in Mythmusic now
works.

On 11/29/05, Joe Garcia <[EMAIL PROTECTED]> wrote:
> Actually I have this same exact problem.  Did anybody find any answers
> to this?  I followed the instructions here
> http://www.alsa-project.org/alsa-doc/doc-php/template.php?module=via82xx.
>
> this is an output of lsmod | grep oss
>
> snd_pcm_oss57888  0
> snd_mixer_oss  18944  1 snd_pcm_oss
> snd_pcm92680  4 snd_pcm_oss,snd_via82xx,snd_ac97_codec
> snd60292  12
> snd_pcm_oss,snd_mixer_oss,snd_via82xx,snd_ac97_codec,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi,snd_seq_device
>
> Still can't get mythmusic to work.  Also the "Master" slider does
> nothing, but "PCM" does.
>
>
> On 10/17/05, Sage <[EMAIL PROTECTED]> wrote:
> > So there's no way around this?  I don't have an SPDIF-out, so that's not
> > really an option for me.  I just want to use the same control for MythMusic
> > as I do for MythTV -- you'd think this would be the norm.  No way to compile
> > MythMusic with ALSA, or to make its OSS controls work on a machine using
> > ALSA drivers?
> >
> >
> > On 10/12/05, Nick <[EMAIL PROTECTED]> wrote:
> > > On 13/10/05, Sage <[EMAIL PROTECTED] > wrote:
> > > > When I'm playing songs via MythMusic, my volume control does not work.
> > > >  If I hit the up/down volume keys on the remote, there is a volume bar
> > > > that moves up and down, but the actual sound does not increase or
> > > > decrease.
> > > >
> > > > Volume controls work fine for watching recordings or live tv.  In the
> > > > "General" settings, I have the volume controls configured to
> > > > manipulate the Master volume.  I'm using ALSA sound drivers.
> > > >
> > > > Is this normal behavior for MythMusic?  What can I do to get volume
> > > > control working?
> > >
> > > MythTV is likely using the ALSA mixer (set as 'default' ) to control
> > > your audio. MythMusic uses OSS and so could be using a different
> > > control that the ALSA mixer does not control (if using ALSA with
> > > OSS-emulation. I use SPDIF-out so don't have this problem, but seem to
> > > recall a similar post a few weeks back.
> > >
> > > Nick
> > > ___
> > > mythtv-users mailing list
> > > mythtv-users@mythtv.org
> > > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> > >
> > >
> >
> >
> >
> > --
> >
> > "Time is a gypsy caravan / steals away in the night, to leave you stranded
> > in dreamland"
> > -- from "Dreamline," by Rush
> > ___
> > mythtv-users mailing list
> > mythtv-users@mythtv.org
> > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> >
> >
> >
>
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic volume

2005-11-28 Thread Joe Garcia
Actually I have this same exact problem.  Did anybody find any answers
to this?  I followed the instructions here
http://www.alsa-project.org/alsa-doc/doc-php/template.php?module=via82xx.

this is an output of lsmod | grep oss

snd_pcm_oss57888  0
snd_mixer_oss  18944  1 snd_pcm_oss
snd_pcm92680  4 snd_pcm_oss,snd_via82xx,snd_ac97_codec
snd60292  12
snd_pcm_oss,snd_mixer_oss,snd_via82xx,snd_ac97_codec,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi,snd_seq_device

Still can't get mythmusic to work.  Also the "Master" slider does
nothing, but "PCM" does.


On 10/17/05, Sage <[EMAIL PROTECTED]> wrote:
> So there's no way around this?  I don't have an SPDIF-out, so that's not
> really an option for me.  I just want to use the same control for MythMusic
> as I do for MythTV -- you'd think this would be the norm.  No way to compile
> MythMusic with ALSA, or to make its OSS controls work on a machine using
> ALSA drivers?
>
>
> On 10/12/05, Nick <[EMAIL PROTECTED]> wrote:
> > On 13/10/05, Sage <[EMAIL PROTECTED] > wrote:
> > > When I'm playing songs via MythMusic, my volume control does not work.
> > >  If I hit the up/down volume keys on the remote, there is a volume bar
> > > that moves up and down, but the actual sound does not increase or
> > > decrease.
> > >
> > > Volume controls work fine for watching recordings or live tv.  In the
> > > "General" settings, I have the volume controls configured to
> > > manipulate the Master volume.  I'm using ALSA sound drivers.
> > >
> > > Is this normal behavior for MythMusic?  What can I do to get volume
> > > control working?
> >
> > MythTV is likely using the ALSA mixer (set as 'default' ) to control
> > your audio. MythMusic uses OSS and so could be using a different
> > control that the ALSA mixer does not control (if using ALSA with
> > OSS-emulation. I use SPDIF-out so don't have this problem, but seem to
> > recall a similar post a few weeks back.
> >
> > Nick
> > ___
> > mythtv-users mailing list
> > mythtv-users@mythtv.org
> > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> >
> >
>
>
>
> --
>
> "Time is a gypsy caravan / steals away in the night, to leave you stranded
> in dreamland"
> -- from "Dreamline," by Rush
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
>
>
>
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic & mythstream

2005-11-19 Thread Michael T. Dean

Danny Brow wrote:


Mythmusic freeze up when I try to put the spectrum visualization in full
screen mode and I have to kill mythtv and restart. Any one else have
this issue? Anyway to disable spectrum?
 


In MythMusic setup:
Visualizations
List of visualizations to use during playback. Possible values are 
space-separated list of Random, MonoScope, StereoScope, Spectrum, 
BumpScope, Goom, Synaesthesia, AlbumArt, Gears, Blank



Anyone have mythstream working with 0.18.1? if I type mythfrontend
mythstream it comes up, but it does not when just running mythfrontend,
no option on the screen???
 

Read the INSTALL file that came with MythStream.  You didn't add 
MythStream to the theme you're using...


5) This unofficial release needs manual configuration of mythtv files
  in the mythtv installation tree to let MythTv know the plugin exists:
  - set buttons of type STREAM in library.xml and media_settings.xml
  - define the STREAM button (stream.png) in theme.xml

Mike
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic volume

2005-10-17 Thread Sage
So there's no way around this?  I don't have an SPDIF-out, so
that's not really an option for me.  I just want to use the same
control for MythMusic as I do for MythTV -- you'd think this would be
the norm.  No way to compile MythMusic with ALSA, or to make its
OSS controls work on a machine using ALSA drivers?On 10/12/05, Nick <[EMAIL PROTECTED]> wrote:
On 13/10/05, Sage <[EMAIL PROTECTED]
> wrote:> When I'm playing songs via MythMusic, my volume control does not work.>  If I hit the up/down volume keys on the remote, there is a volume bar> that moves up and down, but the actual sound does not increase or
> decrease.>> Volume controls work fine for watching recordings or live tv.  In the> "General" settings, I have the volume controls configured to> manipulate the Master volume.  I'm using ALSA sound drivers.
>> Is this normal behavior for MythMusic?  What can I do to get volume> control working?MythTV is likely using the ALSA mixer (set as 'default' ) to controlyour audio. MythMusic uses OSS and so could be using a different
control that the ALSA mixer does not control (if using ALSA withOSS-emulation. I use SPDIF-out so don't have this problem, but seem torecall a similar post a few weeks back.Nick___
mythtv-users mailing listmythtv-users@mythtv.orghttp://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
-- "Time is a gypsy caravan / steals away in the night, to leave you stranded in dreamland"-- from "Dreamline," by Rush
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic and AAC/MP4/M4A files

2005-10-16 Thread Jon Whitear
> How do i get MythMusic to work with mp4 files?

Support for MPEG4 audio files needs to be compiled in. If you're building
from source, pass the --enable-aac option to ./configure. If you're
installing from packages, you'll have to find some that have the support
enabled.

I can't remember if I had to rescan for new music after doing this.

Cheers,

Jon

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users



Re: [mythtv-users] MythMusic volume

2005-10-12 Thread Nick
On 13/10/05, Sage <[EMAIL PROTECTED]> wrote:
> When I'm playing songs via MythMusic, my volume control does not work.
>  If I hit the up/down volume keys on the remote, there is a volume bar
> that moves up and down, but the actual sound does not increase or
> decrease.
>
> Volume controls work fine for watching recordings or live tv.  In the
> "General" settings, I have the volume controls configured to
> manipulate the Master volume.  I'm using ALSA sound drivers.
>
> Is this normal behavior for MythMusic?  What can I do to get volume
> control working?

MythTV is likely using the ALSA mixer (set as 'default' ) to control
your audio. MythMusic uses OSS and so could be using a different
control that the ALSA mixer does not control (if using ALSA with
OSS-emulation. I use SPDIF-out so don't have this problem, but seem to
recall a similar post a few weeks back.

Nick
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic & mythtvosd

2005-09-21 Thread Timothy McFadden
You're right, mythtvosd doesn't work with MythMusic.

Bummer.

-Tim

On 9/19/05, Phill Edwards <[EMAIL PROTECTED]> wrote:
> > I've toying around with the idea of using mythtvosd to display
> > artist/album/track while music is playing back.  It doesn't seem too
> > hard... a slight modification to osd.xml with an xml template.
> >
> > I was wondering if anyone's already done this?
> >
> > I'm not sure how to communicate with MythMusic.  I think my best bet
> > would be to modify MythMusic itself to make calls to mythtvosd.
>
> Not sure if this will work. Mythtvosd only displays when you're
> watching Live TV or a recording. And if you're doing that, then you
> can't be running MythMusic as well, so I don't think it will work.
>
> Regards,
> Phill
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
>
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic & mythtvosd

2005-09-19 Thread Phill Edwards
> I've toying around with the idea of using mythtvosd to display
> artist/album/track while music is playing back.  It doesn't seem too
> hard... a slight modification to osd.xml with an xml template.
> 
> I was wondering if anyone's already done this?
> 
> I'm not sure how to communicate with MythMusic.  I think my best bet
> would be to modify MythMusic itself to make calls to mythtvosd.

Not sure if this will work. Mythtvosd only displays when you're
watching Live TV or a recording. And if you're doing that, then you
can't be running MythMusic as well, so I don't think it will work.

Regards,
Phill
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic volume too quiet

2005-09-10 Thread Nick
On 10/09/05, Jesse Guardiani <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> My MythMusic is always a LOT quieter than the rest of
> MythTV (DVD player, Live TV, etc).
> 
> It's not so bad going INTO MythMusic, as all you have
> to do is turn up the volume. But it's TERRIBLE coming
> out of it, because if you forget to turn the volume
> down first, it nearly blows your eardrums out when you
> watch a show. :)
> 
> I'm running KnoppMyth R5A16 w/ an Intel 8x0 chipset
> sound card. I'm using ALSA w/OSS emulation.

Are you using ALSA for MythTV and then OSS for MythMusic? Have you
tried using OSS for everything to see if that removes the audio level
problems? MythMusic requires OSS, so it might be interesting to see if
using OSS throughout makes any difference (as it should then be using
the same mixer device). I'm not sure whether your mixer would show a
different control for audio using the OSS compat.

Nick
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic directory sort...

2005-09-08 Thread Martin Ebourne
On Wed, 07 Sep 2005 20:55:46 -0600, Timothy McFadden wrote:
> I have my directories set up as /music/genre/artist/album.  My problem is
> that a couple of the genres have many artists.  I'd like to keep "tree
> sorting" as "directory" but have "splitartist" for directories containing
> more than, say, 20 artists.
> 
> Is that even possible w/o compiling my own?

I have a similar layout and a similar problem.

Eventually I worked around it by making a parallel directory hierarchy
with A-D etc directories containing symlinks back to the artists in the
main tree.

It works perfectly well, takes almost no disk space, and requires just a
little maintenance. Still, if you want to make a code fix I'd be
interested!

Cheers,

Martin.

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic - no goom...

2005-09-07 Thread David
Jon Hoyt wrote:

>On 8/8/05, David <[EMAIL PROTECTED]> wrote:
>  
>
>>Since upgrading to 18.1 I don't have goom in mythmusic. Any suggestions
>>I'm using the standard debian packages.
>>
>>David
>>___
>>mythtv-users mailing list
>>mythtv-users@mythtv.org
>>http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
>>
>>
>>
>
>I'm also using the debian packages and have no goom.  Have you learned
>anything yet?
>
>  
>
Music in the dark is very relaxing ?

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic - no goom...

2005-09-07 Thread Jon Hoyt
On 8/8/05, David <[EMAIL PROTECTED]> wrote:
> Since upgrading to 18.1 I don't have goom in mythmusic. Any suggestions
> I'm using the standard debian packages.
> 
> David
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 

I'm also using the debian packages and have no goom.  Have you learned
anything yet?

-- 
Jon Hoyt
Eugene, OR
jon at efn.org
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic CD ripping and Accuraterip

2005-09-06 Thread Mark Knecht
Probably nothing in life is a guarantee but 

cdparanoia -vz 

does a very good job.

- Mark

On 9/6/05, Brian C. Huffman <[EMAIL PROTECTED]> wrote:
> All,
> 
> Is there any way in linux to guarantee the quality of a ripped CD such as the
> Accuraterip database does?
> 
> I have already experienced one song (that I've found) that ripped w/ a skip in
> it.  Installing dbpoweramp under Wine makes me cringe
> 
> Thanks,
> -b
> 
> 
> 
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 
> 
>
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic slow start up

2005-08-29 Thread Peter Osterberg

Thank you!

At 18:40 2005-08-28, you wrote:

Peter Osterberg wrote:

I've about 15.000 - 20.000 titles in my music database, i guess thats the 
reason,  which results in a 10-20 second startup time whenever I want to 
start MythMusic. I find this extremely annoying, my xbox which run Xbmc 
doesn't do like this; 0.01 second startup time there. ;o)


Well I guess that MythMusic digs thru all entries in the database before 
it continues. Is there a way to stop it from doing like this? I guess 
that it might needed depending on how you want to browse your titles but 
I want to browse them exatly as I have them organized in my file tree so 
I dont really see why MythMusic would need to do this, if that is what happens.


I think this is so bad that I almost don't want to use it to listen to 
music, or even worse consider using something else than MythTV for my 
media box.


IIRC, unchecking

List as Shuffled
List songs on the playback screen in the order they will be played.

will prevent this delay.  I can't test it, though, since I only have like 
100 songs from my 10 CD's in my library, so I don't see a delay with it set...


You might also get better performance with "Random" shuffle (for "Play 
mode") than with "Intelligent" shuffle.  I'd try first with Intelligent, 
then change it if it's still too slow.


Mike
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic slow start up

2005-08-28 Thread Michael T. Dean

Peter Osterberg wrote:

I've about 15.000 - 20.000 titles in my music database, i guess thats 
the reason,  which results in a 10-20 second startup time whenever I 
want to start MythMusic. I find this extremely annoying, my xbox which 
run Xbmc doesn't do like this; 0.01 second startup time there. ;o)


Well I guess that MythMusic digs thru all entries in the database 
before it continues. Is there a way to stop it from doing like this? I 
guess that it might needed depending on how you want to browse your 
titles but I want to browse them exatly as I have them organized in my 
file tree so I dont really see why MythMusic would need to do this, if 
that is what happens.


I think this is so bad that I almost don't want to use it to listen to 
music, or even worse consider using something else than MythTV for my 
media box.


IIRC, unchecking

List as Shuffled
List songs on the playback screen in the order they will be played.

will prevent this delay.  I can't test it, though, since I only have 
like 100 songs from my 10 CD's in my library, so I don't see a delay 
with it set...


You might also get better performance with "Random" shuffle (for "Play 
mode") than with "Intelligent" shuffle.  I'd try first with Intelligent, 
then change it if it's still too slow.


Mike
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic issues

2005-08-19 Thread Stephen Cole



Dewey Smolka wrote:


I've found that the music module likes to crash to the desktop with a
seg fault if mythvideo was playing previoulsy but the machine has been
idle for a while. I haven't been able to track down what's wrong, but
restarting mythfrontend in the morning is no big deal. It doesn't seem
to mind if it's been idle after playing music.
 

I don't watch many video's, so this can't be the sole culprit  It's 
possibly related to watching tv as well, but I haven't been able to 
decipher any set pattern of failure.



It sounds to me like you have database issues. Every time you change
any files in your music directory, you have to go to Setup -> Music
Setup -> Scan for New Music. If the files are on a network share, make
sure it's working, and make sure the MythTV user can read the music
directory -- and can write if you're ripping CDs.
 

I've never changed any files in the music directory.  I add new stuff 
through "import cd".



I find it's generally easier to use direcotry sorting rather than id3
but you need to plan your directory structure. I keep everything in
~/music/genre/artist/album/track.ogg. In the music setup, there's a
sorting option. Set it to directory.
 

I do use directory sorting but was hoping that with the compilation 
artist feature I could use genre/artist/album sorting but until I can 
get compilation artist to work right directory sorting is much better.



I'd really like it if the playlists were a bit easier to deal with,
but it still works well if you just set a default playlist and
randomize. I find it's a lot easier to change the playlist later by
pressing '3' if you know where all your music is because you put it in
/genre/artist/album/ than to worry about where id3 sorting might have
put it.
 

I'd love to use the "3" option from the playlist to change the current 
playlist, the problem is that it either freezes the UI on the frontend 
or it ignores the changes I've made.  So it's not really useful.  Also 
It is annoying that when I change the selected music the update is not 
immediately pushed to the database, so that when I try and play the 
playlist and mythmusic crashes, on restart of the frontend I've lost my 
selected music and have to do it all over again.  This is what really hurts.



I don't know what the limits of the database are, but I run a P3 700
with a Turtle Beach Riviera card. I usually keep around 40-60 records
in the playlist, but I've had the whole lot -- around 6k tracks in the
list at once with no problem.

Still, I wish it were easier to set up and maintain playlists, and
switch between them more easily. What I'd really like is if there was
a priority queue. I'd like to have it play a default playlist in
random order, but let you browse the library and send things to the
front of the line in the order you pick them.

 


Sounds nice.


4) The editor for changing the cd information in the ripping utility
works very poorly.  
   



I like Grip, but there's plenty of other ways to back up your CDs.
___

 

Does anyone know of a cd ripping tool that is compatible with the 
compilation artist support in mythmusic?

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic issues

2005-08-17 Thread Dewey Smolka
I've found that the music module likes to crash to the desktop with a
seg fault if mythvideo was playing previoulsy but the machine has been
idle for a while. I haven't been able to track down what's wrong, but
restarting mythfrontend in the morning is no big deal. It doesn't seem
to mind if it's been idle after playing music.

It sounds to me like you have database issues. Every time you change
any files in your music directory, you have to go to Setup -> Music
Setup -> Scan for New Music. If the files are on a network share, make
sure it's working, and make sure the MythTV user can read the music
directory -- and can write if you're ripping CDs.

I find it's generally easier to use direcotry sorting rather than id3
but you need to plan your directory structure. I keep everything in
~/music/genre/artist/album/track.ogg. In the music setup, there's a
sorting option. Set it to directory.

I'd really like it if the playlists were a bit easier to deal with,
but it still works well if you just set a default playlist and
randomize. I find it's a lot easier to change the playlist later by
pressing '3' if you know where all your music is because you put it in
/genre/artist/album/ than to worry about where id3 sorting might have
put it.

I don't know what the limits of the database are, but I run a P3 700
with a Turtle Beach Riviera card. I usually keep around 40-60 records
in the playlist, but I've had the whole lot -- around 6k tracks in the
list at once with no problem.

Still, I wish it were easier to set up and maintain playlists, and
switch between them more easily. What I'd really like is if there was
a priority queue. I'd like to have it play a default playlist in
random order, but let you browse the library and send things to the
front of the line in the order you pick them.

> 4) The editor for changing the cd information in the ripping utility
> works very poorly.  

I like Grip, but there's plenty of other ways to back up your CDs.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic - no goom...

2005-08-16 Thread Paul

- Original Message - 
From: "David" <[EMAIL PROTECTED]>
To: "Discussion about mythtv" 
Sent: Tuesday, August 16, 2005 9:01 AM
Subject: Re: [mythtv-users] Mythmusic - no goom...


> 
> Tim Tait wrote:
> 
> > David wrote:
> >
> >> Since upgrading to 18.1 I don't have goom in mythmusic. Any suggestions
> >> I'm using the standard debian packages.
> >>
> >> David
> >
> >
> > Any responses? I have the same problem...
> 
> No - I couldn't find anything in the archives so I posted.
> By now I had assumed it was just me so I was (occasionally) looking at
> things like xv etc.
> 
> xmms runs goom just fine so it's not the machine.
> 
> I also made sure all my frontends were running the latest xmms-goom in
> case it depended on an external goom library - and that may be an issue.
> IIRC goom has recently had a fairly substantial change and this may be
> too new for mythmusic. I've not gotten around to trying to downgrade...
> 
> Other than that I found no errors from myth and I'm not puttting much
> more effort in just yet.
> 
> David

Mythmusic uses its own version of the goom code (somewhat out dated now)
so doesn't require any external goom library.

It is a conditional compile that has to be selected in the configure script. 
Are you
sure the packages you are using have the goom stuff compiled in? It requires
both the fftw and SDL stuff enabled. Does the synaesthesia visualizer work?
I think it also uses the SDL library like goom.

Paul

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic - no goom...

2005-08-16 Thread David

Tim Tait wrote:

> David wrote:
>
>> Since upgrading to 18.1 I don't have goom in mythmusic. Any suggestions
>> I'm using the standard debian packages.
>>
>> David
>
>
> Any responses? I have the same problem...

No - I couldn't find anything in the archives so I posted.
By now I had assumed it was just me so I was (occasionally) looking at
things like xv etc.

xmms runs goom just fine so it's not the machine.

I also made sure all my frontends were running the latest xmms-goom in
case it depended on an external goom library - and that may be an issue.
IIRC goom has recently had a fairly substantial change and this may be
too new for mythmusic. I've not gotten around to trying to downgrade...

Other than that I found no errors from myth and I'm not puttting much
more effort in just yet.

David

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic - no goom...

2005-08-15 Thread Tim Tait

David wrote:

Since upgrading to 18.1 I don't have goom in mythmusic. Any suggestions
I'm using the standard debian packages.

David


Any responses? I have the same problem...

Tim
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic shuts down mythfrontend

2005-08-08 Thread mail2

the 18.0 version crashed within a few minutes. The 18.1 didn't crash since 2 
weeks.
Which version are you using ?
Pascal.

- Original Message - 
From: "Neil" <[EMAIL PROTECTED]>

To: "MythTV Users" 
Sent: Monday, August 08, 2005 7:41 PM
Subject: [mythtv-users] mythmusic shuts down mythfrontend


Hey guys, 

I've been using mythtv for almost 7 months now. It's always been mythmusic 
that's been buggy in my end. I'm able to play music but there are times that 
it crashes mythfrontend. It only crashes when I play music. Sometimes works 
well, but sometimes not. 95%, it's working well. I guess it's time to 
escalate this issue. 

Can you guys tell me what to do on what I should capture which I can send to 
people who knows how to figure out what problem I'm encountering(such as 
what parameter should be added to mythfrontend, debug level, etc). 

Thank you very much in advance. 


Neil
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic playing mp3-CD

2005-08-01 Thread ian

On Tue, 2 Aug 2005, Robin Gilks wrote:


Greetings

I've found loads of information about creating mp3s from CDs and burning
the result to CD, but is it possible to play mp3-cds under MythMusic? My
DVD cheap player manages to do it so I assume the autodetect of the media
can't be that hard.


Hmm... not a bad idea.  Also an option to import the mp3s into mythmusic 
by copying them in.  Which would also be nice for removable memory sticks 
and the like.


Assuming its possible, are there any config items to set 

up? >

I suppose the same question applies to Kodak PhotoCDs as well - I don't
suppose MythGallery registers for image CDs?

Cheers


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic and cd playing - big problems - soln found on net

2005-07-10 Thread ffrr


Yep, some googling around found it.  My .cdserverrc (yes I did have one 
after all)  was/is being created with an incorrect url in it.  Manually 
changing it as follows


#SERVER=http://freedb.freedb.org:80/~cddb/cddb.cgi CDDB
SERVER=cddbp://freedb.freedb.org:888/ CDDB


fixes it, and gets it working again.


I have to say that allowing the frontend to lock up like it does, just 
because it is waiting for a web site to respond in the background, is 
pretty awful.


Anyway, just glad to have it working I suppose
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic and cd playing - big problems

2005-07-10 Thread ffrr



OK, more to the story...   while I posted the last email, it eventually 
freed itself up.  The terminal posted the message



databasebox.o: Couldn't find your CD. It may not be in the freedb database.
  More likely, however, is that you need to delete ~/.cddb and
  ~/.cdserverrc and restart mythmusic. Have a nice day.
MythThemedDialog.o: something is requesting a screen update of zero 
size. A widget probably has not done a calculateScreeArea(). Will redraw 
the whole screen (inefficient!).



I tried deleting .cddb (I have no .cdserverrc) but it hasn't helped.
Now it has freed itself up, I can select the CD for playing in the 
playlist editor, as 'unkown'  and it will play.



I closed myth and fired up kaffeine.  It accepts the same CD and gets 
the names and tracks from the net fine.



So something is misconfigured or broken in myth  :-(
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic does not tag MP3's?

2005-07-07 Thread Matt Hannan

Stutty wrote:

On 7/7/05, Matt Hannan <[EMAIL PROTECTED]> wrote:
 

I just noticed that all of the mp3's that I am creating via MythMusic do
not have ID3 tags on them.

   


They are probably there, just not in a version your tools/software can
read - try installing

id3lib

It has a convert utility.


From mythmusic/README


__NB__: The libid3tag library writes ID3v2.4 format tags, which
seem to be less supported than the v2.3 version. Any MP3 file created
or editited in MythMusic will use ID3v2.4 tags.
amarok and Juk both support this format of tags as does the
libmad output
plugin for xmms.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

 
A! Thanks for that. I guess that that makes sense. I do not see the 
ID3 info in the Audio Tag Tool or xmms (without the plugin).



___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic does not tag MP3's?

2005-07-07 Thread Stutty
On 7/7/05, Matt Hannan <[EMAIL PROTECTED]> wrote:
> I just noticed that all of the mp3's that I am creating via MythMusic do
> not have ID3 tags on them.
> 

They are probably there, just not in a version your tools/software can
read - try installing

id3lib

It has a convert utility.

>From mythmusic/README

__NB__: The libid3tag library writes ID3v2.4 format tags, which
 seem to be less supported than the v2.3 version. Any MP3 file created
 or editited in MythMusic will use ID3v2.4 tags.
 amarok and Juk both support this format of tags as does the
libmad output
 plugin for xmms.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic on frontend or backend?

2005-06-30 Thread Michael T. Dean

Sameer Verma wrote:


I am looking for pointers to a document that can explain config. of
mythmusic across a backend and a frontend on two different machines.
Most of the info I find assumes that the frontend and backend are on
the same box.

I am assuming that just like with mythtv, I should be able to host
music on the backend and then stream it to the frontend...Any help
would be great!
 

MythMusic is a frontend-only plugin.  There's no backend component of 
it, so it must have "local" access to the music files.  The files may be 
on a network share (NFS or Samba).


The streaming idea you want is currently in the works in the form of mfd 
and mfe, but they're not completely here, yet.  If you're adventurous, 
you can check them out.


HTH.

Mike
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic on frontend or backend?

2005-06-30 Thread Nick
On 6/30/05, Sameer Verma <[EMAIL PROTECTED]> wrote:
> Hi,
> I am looking for pointers to a document that can explain config. of
> mythmusic across a backend and a frontend on two different machines.
> Most of the info I find assumes that the frontend and backend are on
> the same box.
> 
> I am assuming that just like with mythtv, I should be able to host
> music on the backend and then stream it to the frontend...Any help
> would be great!

As with mythvideo, mythmusic accesses media files outside of the myth
protocols (I'm pretty sure). Host the data on a network mount (or even
a separate machine) such as nfs, and then it becomes available to all
machines on the network to use, even if they're not running mythtv at
all.

Nick
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic on frontend or backend?

2005-06-30 Thread Dan Littlejohn
I used a nfs mount.

Dan

On 6/30/05, Sameer Verma <[EMAIL PROTECTED]> wrote:
> Hi,
> I am looking for pointers to a document that can explain config. of
> mythmusic across a backend and a frontend on two different machines.
> Most of the info I find assumes that the frontend and backend are on
> the same box.
> 
> I am assuming that just like with mythtv, I should be able to host
> music on the backend and then stream it to the frontend...Any help
> would be great!
> 
> Sameer
> --
> http://sameerverma.org/
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
>
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic on frontend or backend?

2005-06-30 Thread PAUL WILLIAMSON
I'm not sure about all options, but I know I had to export the 
playlist and music directories on my backend and nfsmount them 
on my frontend.

I don't think the music is available via the mythprotocol, but 
I could be wrong.

Paul

>>> "Sameer Verma" <[EMAIL PROTECTED]> 06/30/05 4:22 PM >>>
Hi,
I am looking for pointers to a document that can explain config. of
mythmusic across a backend and a frontend on two different machines.
Most of the info I find assumes that the frontend and backend are on
the same box.

I am assuming that just like with mythtv, I should be able to host
music on the backend and then stream it to the frontend...Any help
would be great!

Sameer
-- 
http://sameerverma.org/ 
___
mythtv-users mailing list
mythtv-users@mythtv.org 
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users 


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic Visualisations

2005-06-27 Thread Donavan Stanley
On 6/26/05, Duncan Brown <[EMAIL PROTECTED]> wrote:
> Craig Tinson wrote:
> 
> > Duncan Brown wrote:
> >> 1) Is there anywhere I can download any more?
> >>
> >> 2) Is there any way of having the track name appear whenever a new
> >> one starts?
> >>
> >> 3) Anyone got any plans or heard anyone mention porting the excellent
> >> (and now open) milkdrop to myth?
> >
> >
> >
> > regarding Q3.. I think projectM would be better to implement:
> > http://xmms-projectm.sourceforge.net/
> >
> > milkdrop is win32 only as it uses directx.. but projectM is opengl based
> > and it's only requirement is a stable sdl library.
> 
> 
> Ah ok, I didnt realise that about milkdrop, my mistake. As for projectM,
> I am no programmer unfortunately..
> 
> cheers anyway
> 
> Anyone got any input on the first 2 questions?

1) No
2) Not without modifying the code so no.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic Visualisations

2005-06-26 Thread Duncan Brown

Craig Tinson wrote:


Duncan Brown wrote:


Hey all

Few quick questions about mythmusic visualisations that i've failed 
to find anything about by searching..


1) Is there anywhere I can download any more?

2) Is there any way of having the track name appear whenever a new 
one starts?


3) Anyone got any plans or heard anyone mention porting the excellent 
(and now open) milkdrop to myth?




regarding Q3.. I think projectM would be better to implement:
http://xmms-projectm.sourceforge.net/

milkdrop is win32 only as it uses directx.. but projectM is opengl based
and it's only requirement is a stable sdl library.

might be worth looking into further as it's all been moved to a library
now so should be relatively easy (for a programmer) to implement.

Craig



Ah ok, I didnt realise that about milkdrop, my mistake. As for projectM, 
I am no programmer unfortunately..


cheers anyway

Anyone got any input on the first 2 questions?

Dunc
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic Visualisations

2005-06-26 Thread Craig Tinson

Duncan Brown wrote:


Hey all

Few quick questions about mythmusic visualisations that i've failed to 
find anything about by searching..


1) Is there anywhere I can download any more?

2) Is there any way of having the track name appear whenever a new one 
starts?


3) Anyone got any plans or heard anyone mention porting the excellent 
(and now open) milkdrop to myth?



regarding Q3.. I think projectM would be better to implement:
http://xmms-projectm.sourceforge.net/

milkdrop is win32 only as it uses directx.. but projectM is opengl based
and it's only requirement is a stable sdl library.

might be worth looking into further as it's all been moved to a library
now so should be relatively easy (for a programmer) to implement.

Craig



___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic Visualisations

2005-06-26 Thread Craig Tinson

Duncan Brown wrote:


Hey all

Few quick questions about mythmusic visualisations that i've failed to 
find anything about by searching..


1) Is there anywhere I can download any more?

2) Is there any way of having the track name appear whenever a new one 
starts?


3) Anyone got any plans or heard anyone mention porting the excellent 
(and now open) milkdrop to myth?



regarding Q3.. I think projectM would be better to implement: 
http://xmms-projectm.sourceforge.net/


milkdrop is win32 only as it uses directx.. but projectM is opengl based 
and it's only requirement is a stable sdl library.


might be worth looking into further as it's all been moved to a library 
now so should be relatively easy (for a programmer) to implement.


Craig


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic sorting order

2005-06-03 Thread David Morris

http://musicbrainz.org

I've had very good luck with the MusicBrainz Tagger application for 
cleaning up ID3 tags.  However it's a Windows-only app (there is an OSX 
version IIRC).  I ran it on a rag-tag collection of about 150 MP3's from 
various sources, some pretty obscure, and most with munged or 
inconsitent tags.  MusicBrainz found EVERY SINGLE ONE OF THEM in its 
database and both fixed the tags and renamed the files to my specs.  
Sometimes the initial search doesn't find it, but you can dig in to view 
the possible hits and I always found what I was looking for there.  If 
by chance you have something they don't, you can add it to their 
database so the next person can find it.


Perhaps it will help in your case by consistently naming the artists.

David


Fedor Pikus wrote:


Question: can I affect the order in which mythmusic lists files *in
the play window*? I can change the tree order, but that affects
"Select music" window. So, I have the tree sorted by artist then
title, and I select all music by Mozart and Paganini. Then I go to
"Play music" and I see all titles by Mozart, followed by all titles by
Paganini, but the order within each group seems to be random,
definitely not sorted by title or album.

On a somehat related question, has anyone found a way to deal with
this little annoyance: I ripped 3 CDs and now I have music by 3
artists: "Mozart", "Wolfgang Amadeus Mozart", and "Mozart, Wolfgang
Amadeus". In three different places in the search tree too. I can
manually edit id3 tags, of course. Any quicker ways?
 


___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic Gentoo e-build & AAC

2005-05-13 Thread Jeff Simpson
> Once that's done, "aac" needs to be among your USE flags. For FAAD2 2.0,
> you also need to unpack the tarball and copy
> faad2/common/mp4ff/mp4ff_int_types.h to /usr/include (the
> FAAD2 ebuild
> should be fixed), or else the ebuild will fail.
> 

I just fixed the faad2 ebuild, there's a patch here:

http://bugs.gentoo.org/show_bug.cgi?id=90783

-- 
email me if you want a gmail invite, I have some invites
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


RE: [mythtv-users] MythMusic

2005-05-06 Thread Mike Curtis








Spot on

 

Although it would not accept Dire Straits Communiqué
it would accept Pink Floyd’s Echo’s

 

Wow software with taste….!

 









From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Barker Thomas
Sent: 06 May 2005 09:54
To: 'Discussion about mythtv'
Subject: RE: [mythtv-users]
MythMusic



 

I am in the same situation, it doesn't
seem to look up cds for me.

 

However the reason its not in your logs is
you have a local cddb cache under ~/.cddb , delete this and retry it.

 









From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike
 Curtis
Sent: 06 May 2005 09:51
To: mythtv-users@mythtv.org
Subject: [mythtv-users] MythMusic



 

Resent as no response to previous post

 

 

Hi folks

 

I have been working on my Mythtv system for some weeks
and have made some mistakes but also a great deal of progress

 

But I am stumped on Mythmusic!!

 

I think I know how it should work but I would like
confirmation

 

CD open tray and insert CD

Select Import CD from menu (tray will accept CD)

Few seconds and menu will give way to options such as
quality, CD title, performer and genre 

First question, should the above be automatically entered?

Lower down on that screen there is the track information or
rather in my case lack of, what I have is the correct number of tracks and what
would seem the play length

Next question; with the information for freedb entered in
.cdserverrc as http://uk.freedb.org
etc as gleaned from the freedb website should all this information be
entered automatically?

I can rip the CD but it will not have any track info

This system is behind a Firewall but there is no
attempt to go out to the freedb website according to the Firewall logs

First time I have felt the need to ask for advice from this
forum folks!!!

  

 

Mike Curtis

 



The Information contained in this E-Mail and any subsequent
correspondence is private and is intended solely for the intended recipient(s).
For those other than the recipient any disclosure, copying, distribution, or
any action taken or omitted to be taken in reliance on such information is
prohibited and may be unlawful.





Emails and other electronic communication with QinetiQ may be monitored. 
Calls to QinetiQ may be recorded for quality control, regulatory and
monitoring purposes.







-- 
This message has been scanned for viruses and
dangerous content by
IC-MailScanner, and is
believed to be clean.

For queries or information please contact:-

=
Internet Central Technical Support


 http://www.internet-central.net
=

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic shows no length for MP3s

2005-05-06 Thread Thomas Börkel
HI!
I have "Ignore ID3 tags" on, because I want it to display the filenames, 
not the ID3 names. But it displays the track length for MP3s I 
downloaded, just not for the MP3s that I encoded myself. But other 
programs show the length of my MP3s. So, there is something different 
going on.

Thomas
Darren Black wrote:
If you've got 'Ignore ID3 tags' switched on, it wont read the ID3 tags
(surprise!), which contain the song lengths. I'd love a workaround for
that to be honest... There's no good reason for the player not to try
and ascertain the track length when it's actually playing it.
/drdaz
On 5/6/05, Thomas Börkel <[EMAIL PROTECTED]> wrote:
HI!
I have encoded some MP3s with lame 3.96.1 and constant bitrate 192 KBit.
MythMusic 0.18 plays them well, but shows no track length for them
("00:00").
Any hints?
Thanks!
Thomas
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic shows no length for MP3s

2005-05-06 Thread Darren Black
If you've got 'Ignore ID3 tags' switched on, it wont read the ID3 tags
(surprise!), which contain the song lengths. I'd love a workaround for
that to be honest... There's no good reason for the player not to try
and ascertain the track length when it's actually playing it.

/drdaz

On 5/6/05, Thomas Börkel <[EMAIL PROTECTED]> wrote:
> HI!
> 
> I have encoded some MP3s with lame 3.96.1 and constant bitrate 192 KBit.
> 
> MythMusic 0.18 plays them well, but shows no track length for them
> ("00:00").
> 
> Any hints?
> 
> Thanks!
> 
> Thomas
> 
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
>
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


RE: [mythtv-users] MythMusic

2005-05-06 Thread Barker Thomas








I am in the same situation, it doesn't
seem to look up cds for me.

 

However the reason its not in your logs is
you have a local cddb cache under ~/.cddb , delete this and retry it.

 









From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Curtis
Sent: 06 May 2005 09:51
To: mythtv-users@mythtv.org
Subject: [mythtv-users] MythMusic



 

Resent as no response to previous post

 

 

Hi folks

 

I have been working on my Mythtv system for some weeks
and have made some mistakes but also a great deal of progress

 

But I am stumped on Mythmusic!!

 

I think I know how it should work but I would like
confirmation

 

CD open tray and insert CD

Select Import CD from menu (tray will accept CD)

Few seconds and menu will give way to options such as
quality, CD title, performer and genre 

First question, should the above be automatically entered?

Lower down on that screen there is the track information or
rather in my case lack of, what I have is the correct number of tracks and what
would seem the play length

Next question; with the information for freedb entered in
.cdserverrc as http://uk.freedb.org
etc as gleaned from the freedb website should all this information be
entered automatically?

I can rip the CD but it will not have any track info

This system is behind a Firewall but there is no
attempt to go out to the freedb website according to the Firewall logs

First time I have felt the need to ask for advice from this
forum folks!!!

  

 

Mike Curtis

 




The Information contained in this E-Mail and any subsequent correspondence 
is private and is intended solely for the intended recipient(s).For those 
other than the recipient any disclosure, copying, distribution, or any action 
taken or omitted to be taken in reliance on such information is prohibited and 
may be unlawful.
Emails and other electronic communication with QinetiQ may be 
monitored.  Calls to QinetiQ may be recorded for quality control, 
regulatory and monitoring purposes.



___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic compile failure

2005-05-05 Thread Craig Read
jmk wrote:
To answer my own post...  removing mad-0.14.2b and installing 
libmad-0.15.1b and libid3tag-0.15.1b fixed my mythmusic compile errors.
Stupid old RH9 box.

Joe
Thanks Joe,
That also resolved the compile problem for mythmusic on my frontend.  I 
will have to get around to upgrading the OS one of these days though. ;-)

Craig...
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.4 - Release Date: 4/05/2005
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic id3 tag re-evaluation.

2005-04-29 Thread Jeff Wormsley
Stuart Morgan wrote:
The problem with that method is that it destroys the old playlists. If you 
have thousands of MP3s and have spent ages building up different playlists 
the last thing you want to do is start from scratch.
 

Ah, having never built a playlist, I wasn't aware of that.

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic id3 tag re-evaluation.

2005-04-29 Thread Neil Bird
Around about 29/04/05 01:27, Matt Gracie typed ...
Is there any way to get Mythmusic to re-read the ID3 tags from the files 
in the music library? Being the obsessive sort that I am, I just updated 
a bunch of the tags in my collection, but mythmusic is still displaying 
the old information from when they were previously imported.
  I believe it only does processing for 'new' files;  doesn't 
timestamp-check them.

  I'm afraid I [yes, I do it too] resort to fixing the musicmetadata 
fields manually in SQL :)

  And on that note: does SQL have a regex-style search & replace 
("replace()" only matches fixed text)?  That would ease a lot of pain in 
this area!

--
[EMAIL PROTECTED] ~]# rm -f .signature
[EMAIL PROTECTED] ~]# ls -l .signature
ls: .signature: No such file or directory
[EMAIL PROTECTED] ~]# exit
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic id3 tag re-evaluation.

2005-04-29 Thread Stuart Morgan
On Friday 29 Apr 2005 01:37, Jeff Wormsley wrote:
> Matt Gracie wrote:
> > Is there any way to get Mythmusic to re-read the ID3 tags from the
> > files in the music library? Being the obsessive sort that I am, I just
> > updated a bunch of the tags in my collection, but mythmusic is still
> > displaying the old information from when they were previously imported.
>
> Couldn't you just point to a different folder, rescan, then point back
> and rescan again?  Haven't personally tried it, but it should work.

The problem with that method is that it destroys the old playlists. If you 
have thousands of MP3s and have spent ages building up different playlists 
the last thing you want to do is start from scratch.
-- 
Stuart Morgan
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic id3 tag re-evaluation.

2005-04-29 Thread Dr. C Mythology
I sometimes need it to re-read the mp3 tags, so I just empty the table manually
DELETE FROM musicmetatag
And then re-scan the dir

On 4/29/05, Jeff Wormsley <[EMAIL PROTECTED]> wrote:
> Matt Gracie wrote:
> 
> > Is there any way to get Mythmusic to re-read the ID3 tags from the
> > files in the music library? Being the obsessive sort that I am, I just
> > updated a bunch of the tags in my collection, but mythmusic is still
> > displaying the old information from when they were previously imported.
> >
> Couldn't you just point to a different folder, rescan, then point back
> and rescan again?  Haven't personally tried it, but it should work.
> 
> Jeff.
> 
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
>
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic id3 tag re-evaluation.

2005-04-28 Thread Jeff Wormsley
Matt Gracie wrote:
Is there any way to get Mythmusic to re-read the ID3 tags from the 
files in the music library? Being the obsessive sort that I am, I just 
updated a bunch of the tags in my collection, but mythmusic is still 
displaying the old information from when they were previously imported.

Couldn't you just point to a different folder, rescan, then point back 
and rescan again?  Haven't personally tried it, but it should work.

Jeff.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic

2005-04-27 Thread Matt
On 4/27/05, Chris Hubball <[EMAIL PROTECTED]> wrote:
> > Trust me there are much cooler things coming down the pipline like
> > RTSP and DAAP support for one.  Imagine a frontend in every room
> > sync'd to the same point in the same song/video stream all changing
> > fluidly from the same interface.  Add to that playing your iTunes
> > libraries and you've got it going on.  Oh yeah, and the music will
> > keep playing when you leave the menu I'm pretty sure.
> >
> > --
> > Thanks,
> > Devan Lippman <[EMAIL PROTECTED]>
> 
> Cool - is this stuff a long way away?  I'm not interested in most of the
> features at the moment, just being able to play music well from the local
> hard disk.
> 
> Chris.
> 
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 

Some of it's in CVS now... bleeding edge still and most of the
functionality is in a seperate fork under mfd I believe.  I know
someone is working on being able to function with an airport express. 
I can't wait to try that out with my airport express :)
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic

2005-04-27 Thread Chris Hubball
> Trust me there are much cooler things coming down the pipline like
> RTSP and DAAP support for one.  Imagine a frontend in every room
> sync'd to the same point in the same song/video stream all changing
> fluidly from the same interface.  Add to that playing your iTunes
> libraries and you've got it going on.  Oh yeah, and the music will
> keep playing when you leave the menu I'm pretty sure.
>
> --
> Thanks,
> Devan Lippman <[EMAIL PROTECTED]>


Cool - is this stuff a long way away?  I'm not interested in most of the
features at the moment, just being able to play music well from the local
hard disk.

Chris.

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic

2005-04-27 Thread Devan Lippman
On 4/27/05, Michael Haan <[EMAIL PROTECTED]> wrote:
> On 4/27/05, Michael Haan <[EMAIL PROTECTED]> wrote:
> > On 4/27/05, Craig Partin <[EMAIL PROTECTED]> wrote:
> > > On 4/27/05, Michael Haan <[EMAIL PROTECTED]> wrote:
> > > > On 4/27/05, Chris Hubball <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > > I've install MythMusic but I'm slightly disappointed with it.  Does
> > > > > anybody know if there are any improvements in the pipeline.
> > > > >
> > > > > My current complaints are:
> > > > >
> > > > > - Music stops when you leave the menu (I'd like to play music whilst
> > > > > checking the web)
> > > > >
> > > > > - I don't find the playlist menu easy to use.  Something closer to the
> > > > > iPod would be better.
> > > > >
> > > > > Regards,
> > > > > Chris.
> > > > >
> > > > > ___
> > > > > mythtv-users mailing list
> > > > > mythtv-users@mythtv.org
> > > > > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> > > > >
> > > >
> > > > Add to that default support for ripping to FLAC.
> > > > ___
> > > > mythtv-users mailing list
> > > > mythtv-users@mythtv.org
> > > > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> > > >
> > >
> > > It does have support for ripping to FLAC.  If you choose perfect
> > > quality you get FLAC files.
> > >
> >
> > I'm pretty sure I tried that and ended-up with Ogg.  I'll try it again.
> >
> 
> You know what would be cool would be integration with
> www.slimdevices.com through SoftSqueeze.
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 

Trust me there are much cooler things coming down the pipline like
RTSP and DAAP support for one.  Imagine a frontend in every room
sync'd to the same point in the same song/video stream all changing
fluidly from the same interface.  Add to that playing your iTunes
libraries and you've got it going on.  Oh yeah, and the music will
keep playing when you leave the menu I'm pretty sure.

-- 
Thanks,
Devan Lippman <[EMAIL PROTECTED]>
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic

2005-04-27 Thread Michael Haan
On 4/27/05, Michael Haan <[EMAIL PROTECTED]> wrote:
> On 4/27/05, Craig Partin <[EMAIL PROTECTED]> wrote:
> > On 4/27/05, Michael Haan <[EMAIL PROTECTED]> wrote:
> > > On 4/27/05, Chris Hubball <[EMAIL PROTECTED]> wrote:
> > > >
> > > > I've install MythMusic but I'm slightly disappointed with it.  Does
> > > > anybody know if there are any improvements in the pipeline.
> > > >
> > > > My current complaints are:
> > > >
> > > > - Music stops when you leave the menu (I'd like to play music whilst
> > > > checking the web)
> > > >
> > > > - I don't find the playlist menu easy to use.  Something closer to the
> > > > iPod would be better.
> > > >
> > > > Regards,
> > > > Chris.
> > > >
> > > > ___
> > > > mythtv-users mailing list
> > > > mythtv-users@mythtv.org
> > > > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> > > >
> > >
> > > Add to that default support for ripping to FLAC.
> > > ___
> > > mythtv-users mailing list
> > > mythtv-users@mythtv.org
> > > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> > >
> >
> > It does have support for ripping to FLAC.  If you choose perfect
> > quality you get FLAC files.
> >
> 
> I'm pretty sure I tried that and ended-up with Ogg.  I'll try it again.
> 

You know what would be cool would be integration with
www.slimdevices.com through SoftSqueeze.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic

2005-04-27 Thread Michael Haan
On 4/27/05, Craig Partin <[EMAIL PROTECTED]> wrote:
> On 4/27/05, Michael Haan <[EMAIL PROTECTED]> wrote:
> > On 4/27/05, Chris Hubball <[EMAIL PROTECTED]> wrote:
> > >
> > > I've install MythMusic but I'm slightly disappointed with it.  Does
> > > anybody know if there are any improvements in the pipeline.
> > >
> > > My current complaints are:
> > >
> > > - Music stops when you leave the menu (I'd like to play music whilst
> > > checking the web)
> > >
> > > - I don't find the playlist menu easy to use.  Something closer to the
> > > iPod would be better.
> > >
> > > Regards,
> > > Chris.
> > >
> > > ___
> > > mythtv-users mailing list
> > > mythtv-users@mythtv.org
> > > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> > >
> >
> > Add to that default support for ripping to FLAC.
> > ___
> > mythtv-users mailing list
> > mythtv-users@mythtv.org
> > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> >
> 
> It does have support for ripping to FLAC.  If you choose perfect
> quality you get FLAC files.
> 

I'm pretty sure I tried that and ended-up with Ogg.  I'll try it again.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic

2005-04-27 Thread Craig Partin
On 4/27/05, Michael Haan <[EMAIL PROTECTED]> wrote:
> On 4/27/05, Chris Hubball <[EMAIL PROTECTED]> wrote:
> >
> > I've install MythMusic but I'm slightly disappointed with it.  Does
> > anybody know if there are any improvements in the pipeline.
> >
> > My current complaints are:
> >
> > - Music stops when you leave the menu (I'd like to play music whilst
> > checking the web)
> >
> > - I don't find the playlist menu easy to use.  Something closer to the
> > iPod would be better.
> >
> > Regards,
> > Chris.
> >
> > ___
> > mythtv-users mailing list
> > mythtv-users@mythtv.org
> > http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> >
> 
> Add to that default support for ripping to FLAC.
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 

It does have support for ripping to FLAC.  If you choose perfect
quality you get FLAC files.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic

2005-04-27 Thread Michael Haan
On 4/27/05, Chris Hubball <[EMAIL PROTECTED]> wrote:
> 
> I've install MythMusic but I'm slightly disappointed with it.  Does
> anybody know if there are any improvements in the pipeline.
> 
> My current complaints are:
> 
> - Music stops when you leave the menu (I'd like to play music whilst
> checking the web)
> 
> - I don't find the playlist menu easy to use.  Something closer to the
> iPod would be better.
> 
> Regards,
> Chris.
> 
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 

Add to that default support for ripping to FLAC.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic playlist editor

2005-04-16 Thread Graeme Hilton
[EMAIL PROTECTED] wrote:

Ta!  Just need to get them all properly tagged and I can start using the
system to its full advantage.

> Try pressing 'm' while listening to music.
> 
> If you have MythWeb installed, you can easily edit the keybinds with your
> web browser. keys.txt might help you as well.
> 
> 
>>What's the magic combination to make it do it again?  No amount of
>>Googling has been able to assist me with this.  Is there a list of all
>>the key shortcuts for all the Myth modules?

-- 
Graeme Hilton
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic playlist editor

2005-04-16 Thread myth
Try pressing 'm' while listening to music.

If you have MythWeb installed, you can easily edit the keybinds with your
web browser. keys.txt might help you as well.

> What's the magic combination to make it do it again?  No amount of
> Googling has been able to assist me with this.  Is there a list of all
> the key shortcuts for all the Myth modules?

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic playback speed too fast

2005-04-15 Thread Matthew Phillips
On 15/04/2005, at 4:35 PM, David wrote:
Matthew Phillips wrote:
I'm sure there's a much better way to do this in general, in 
particular by using the advice at 
http://www.mythtv.info/moin.cgi/DigitalSoundHowTo and adapting it 
from the nforce example to the VIA 8236 chipset on my board.

Does anyone already have such a beast for the VIA?
It's identical - the comments that imply it's nvidia specific need 
removing
Oh ... bugger. I wish I'd known that, say, about four hours ago ;) It 
does indeed work perfectly, once I change the hw device to 0.

Thanks,
Matt.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic playback speed too fast

2005-04-15 Thread David
Matthew Phillips wrote:
I'm sure there's a much better way to do this in general, in 
particular by using the advice at 
http://www.mythtv.info/moin.cgi/DigitalSoundHowTo and adapting it from 
the nforce example to the VIA 8236 chipset on my board.

Does anyone already have such a beast for the VIA?
It's identical - the comments that imply it's nvidia specific need removing
David
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic playback speed too fast

2005-04-14 Thread Matthew Phillips
On 03/04/2005, at 4:34 PM, Matthew Phillips wrote:
MythMusic 0.17: when playing back mp3's (LAME-encoded, 
alt-preset-standard) the playback speed is noticeably too fast, but 
strangely no other distortion (e.g. no pitch shift). A side-effect is 
that tracks also finish early, e.g. a 4:47 track finishes at about 
4:28. I'm using ALSA output to SPDIF on an EPIA M10K/FC3 system.
Just a followup on this.
It turns out I maligned mythmusic when in fact it was an issue with the 
SPDIF output. SPDIF needs a sample rate of 48KHz, while mythmusic, 
mplayer, etc output 44.1KHz from most music sources, since this is 
their native rate. Using "-srate 48000" fixed mplayer. To fix mythmusic 
I needed to add the following to /etc/asound.conf and tell mythmusic to 
use "ALSA:rate_convert" as the device.

  pcm_slave.test
  {
pcm "spdif"
rate 48000
  }
  pcm.rate_convert
  {
type rate
slave test
  }
I'm sure there's a much better way to do this in general, in particular 
by using the advice at 
http://www.mythtv.info/moin.cgi/DigitalSoundHowTo and adapting it from 
the nforce example to the VIA 8236 chipset on my board.

Does anyone already have such a beast for the VIA?
Matt.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic CVS won't compile

2005-04-08 Thread Will Dormann
Michael J. Lynch wrote:
Ciaran wrote:
OK Fixed it now I think, unfortunately I'm not bright enough to make
patch files, so I'll describe the changes ;)
1) in mythmusic\settings.pro:
Added the line: INCLUDEPATH += /usr/include/mythtv   after the  
isEmpty stuff

2) in mythmusic\mythmusic\mainvisual.h:
changed line 65 to: class MainVisual : public QWidget, public 
MythTV::Visual

Ah, thanks.   That did it!
--
-WD
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic CVS won't compile

2005-04-08 Thread Michael J. Lynch
Ciaran wrote:
OK Fixed it now I think, unfortunately I'm not bright enough to make
patch files, so I'll describe the changes ;)
1) in mythmusic\settings.pro:
Added the line: INCLUDEPATH += /usr/include/mythtv   after the  isEmpty stuff
2) in mythmusic\mythmusic\mainvisual.h:
changed line 65 to: class MainVisual : public QWidget, public MythTV::Visual
(Added MythTV namespace to class extension definition) 

I doubt these are 'fixes'..but now my mythmusic cvs (as of 30 minutes
ago) compiles and builds... and I'm about to run it
Ta
I ran into this same problem yesterday.  I fixed it by making a
symlink to the visual.h file that it was complaining about.
The second problem I fixed by changing the same line you changed
but I changed it to:
class MainVisual : public QWidget, public VisualBase
Anyone know which one it should be?
BTW - This only happened on a machine on which myth had never
been compiled before.  On a machine on which myth had been compiled
before, neither problem occurred.
--
Michael J. Lynch
What if the hokey pokey IS what it's all about -- author unknown
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic CVS won't compile

2005-04-08 Thread Ciaran
On Apr 8, 2005 5:38 PM, Will Dormann <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> I'm runing a CVS version of mythtv from April 7th.   Mythtv and all of
> the other add-ons compiled fine except for mythmusic.
> 
> The error I get is this:
> 
> cd mythmusic && qmake mythmusic.pro -o Makefile cd mythmusic && make -f
> Makefile make[1]: Entering directory
> `/mnt/store/src/mythtv/mythtvcvs/mythmusic/mythmusic' g++ -c -pipe -Wall
> -W -O3 -march=pentiumpro -fomit-frame-pointer -D_REENTRANT -fPIC
> -D_GNU_SOURCE -DPREFIX=\"/usr/local\" -DHAVE_MMX -DQT_NO_DEBUG
> -DQT_THREAD_SUPPORT -DQT_PLUGIN -I/usr/qt/3/mkspecs/linux-g++ -I.
> -I/usr/local/include -I/usr/include/cdda -I/usr/qt/3/include -o
> cddecoder.o cddecoder.cpp In file included from
> /usr/local/include/mythtv/audiooutput.h:9, from cddecoder.cpp:12:
> /usr/local/include/mythtv/output.h:16:20: visual.h: No such file or
> directory
> 
> If I manually symlink visual.h from /usr/local/includes/mythtv to the
> mythmusic directory, the compile gets a bit further:
> 
> g++ -c -pipe -Wall -W -O3 -march=pentiumpro -fomit-frame-pointer
> -D_REENTRANT -fPIC -D_GNU_SOURCE -DPREFIX=\"/usr/local\" -DHAVE_MMX
> -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_PLUGIN
> -I/usr/qt/3/mkspecs/linux-g++ -I. -I/usr/local/include
> -I/usr/include/cdda -I/usr/qt/3/include -o main.o main.cpp In file
> included from playbackbox.h:12, from main.cpp:18: mainvisual.h:66:
> error: parse error before `{' token mainvisual.h:67: error: virtual
> outside class declaration mainvisual.h:67: error: non-member function
> `const char* className()' cannot have `const' method qualifier
> (errors continue)
> 
> Just for the hell of it I tried compiling the 0.17 release version of
> mythmusic and I get the same errors.   0.17 mythmusic compiled against
> the 0.17 mythtv works fine.
> 
> Does anybody know what the problem might be?   Something wrong with the
> include files installed by the CVS version of mythtv?
> 
> Thanks.
> -WD
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
> 
OK Fixed it now I think, unfortunately I'm not bright enough to make
patch files, so I'll describe the changes ;)
1) in mythmusic\settings.pro:
Added the line: INCLUDEPATH += /usr/include/mythtv   after the  isEmpty stuff

2) in mythmusic\mythmusic\mainvisual.h:
changed line 65 to: class MainVisual : public QWidget, public MythTV::Visual

(Added MythTV namespace to class extension definition) 

I doubt these are 'fixes'..but now my mythmusic cvs (as of 30 minutes
ago) compiles and builds... and I'm about to run it

Ta

-- 
- Ciaran
(I now have far too many G-Mail invites available, anyone who wants
one, gets one)
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic CVS won't compile

2005-04-08 Thread Ciaran
On Apr 8, 2005 5:38 PM, Will Dormann <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> I'm runing a CVS version of mythtv from April 7th.   Mythtv and all of
> the other add-ons compiled fine except for mythmusic.
> 
> The error I get is this:
> 
> cd mythmusic && qmake mythmusic.pro -o Makefile cd mythmusic && make -f
> Makefile make[1]: Entering directory
> `/mnt/store/src/mythtv/mythtvcvs/mythmusic/mythmusic' g++ -c -pipe -Wall
> -W -O3 -march=pentiumpro -fomit-frame-pointer -D_REENTRANT -fPIC
> -D_GNU_SOURCE -DPREFIX=\"/usr/local\" -DHAVE_MMX -DQT_NO_DEBUG
> -DQT_THREAD_SUPPORT -DQT_PLUGIN -I/usr/qt/3/mkspecs/linux-g++ -I.
> -I/usr/local/include -I/usr/include/cdda -I/usr/qt/3/include -o
> cddecoder.o cddecoder.cpp In file included from
> /usr/local/include/mythtv/audiooutput.h:9, from cddecoder.cpp:12:
> /usr/local/include/mythtv/output.h:16:20: visual.h: No such file or
> directory
> 
> If I manually symlink visual.h from /usr/local/includes/mythtv to the
> mythmusic directory, the compile gets a bit further:
> 
> g++ -c -pipe -Wall -W -O3 -march=pentiumpro -fomit-frame-pointer
> -D_REENTRANT -fPIC -D_GNU_SOURCE -DPREFIX=\"/usr/local\" -DHAVE_MMX
> -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_PLUGIN
> -I/usr/qt/3/mkspecs/linux-g++ -I. -I/usr/local/include
> -I/usr/include/cdda -I/usr/qt/3/include -o main.o main.cpp In file
> included from playbackbox.h:12, from main.cpp:18: mainvisual.h:66:
> error: parse error before `{' token mainvisual.h:67: error: virtual
> outside class declaration mainvisual.h:67: error: non-member function
> `const char* className()' cannot have `const' method qualifier
> (errors continue)
> 
> Just for the hell of it I tried compiling the 0.17 release version of
> mythmusic and I get the same errors.   0.17 mythmusic compiled against
> the 0.17 mythtv works fine.
> 
> Does anybody know what the problem might be?   Something wrong with the
> include files installed by the CVS version of mythtv?
> 
> Thanks.
> -WD
> ___
> mythtv-users mailing list
> mythtv-users@mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
>  
For what its worth I've also just run into this :( I fixed the 
'missing' visual header  by adding it as aspecific include in the
mythmusic.pro file, but then I ran into your next set of errors, and
I'm not even close to vague familiarity with the code to fix em :(


-- 
- Ciaran
(I now have far too many G-Mail invites available, anyone who wants
one, gets one)
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic

2005-04-06 Thread Niels Dybdahl
> Also on a side note I need to RMA the memory in my backend so its
> going to go down to 256MB for a while.  Should this be ok for
> capturing the mpeg2ts stream from firewire and later transcoding to
> mpeg4?

I ran initially with 256 MB. The system worked, but was not stable (hanged
once per week). Now with 512 MB it is much more stable.
I am running 0.16 on KDE.

Niels Dybdahl

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic (CVS) Compilation Error

2005-04-06 Thread Stuart Morgan
On Wednesday 06 Apr 2005 14:25, Robert Tsai wrote:
> On Wed, Apr 06, 2005 at 12:01:40PM +0100, Stuart Morgan wrote:
> > gcc version 3.4.3
> >
> > gcc -c -pipe -Wall -W -O3 -march=k8 -fomit-frame-pointer -D_REENTRANT
> > -fPIC -D_GNU_SOURCE -DPREFIX=\"/usr/local\"-DHAVE_MMX -DQT_NO_DEBUG
> > -DQT_THREAD_SUPPORT -DQT_PLUGIN -DQT_SHARED
> > -I/usr/lib/qt3/mkspecs/default -I. -I/usr/local/include
> > -I/usr/include/cdda -I/usr/lib/qt3//include -o zoom_filter_mmx.o
> > goom/zoom_filter_mmx.c
> > {standard input}: Assembler messages:
> > {standard input}:9: Error: suffix or operands invalid for `push'
> > {standard input}:11: Error: suffix or operands invalid for `pop'
> > {standard input}:14: Error: suffix or operands invalid for `push'
> > {standard input}:17: Error: suffix or operands invalid for `pop'
> > {standard input}:128: Error: suffix or operands invalid for `pop'
> > make[1]: *** [zoom_filter_mmx.o] Error 1
>
> I'm guessing from the output that you have an amd64 system

Yup

> I "fixed" this on my system by fixing up mythmusic settings.pro and
> removing the "DEFINES += HAVE_MMX" line.

Thanks, I will give that a try.
-- 
Stuart Morgan
http://www.tase.co.uk
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic (CVS) Compilation Error

2005-04-06 Thread Robert Tsai
On Wed, Apr 06, 2005 at 12:01:40PM +0100, Stuart Morgan wrote:
> gcc version 3.4.3
> 
> gcc -c -pipe -Wall -W -O3 -march=k8 -fomit-frame-pointer -D_REENTRANT -fPIC  
> -D_GNU_SOURCE -DPREFIX=\"/usr/local\"-DHAVE_MMX -DQT_NO_DEBUG 
> -DQT_THREAD_SUPPORT -DQT_PLUGIN -DQT_SHARED -I/usr/lib/qt3/mkspecs/default 
> -I. -I/usr/local/include -I/usr/include/cdda -I/usr/lib/qt3//include -o 
> zoom_filter_mmx.o goom/zoom_filter_mmx.c
> {standard input}: Assembler messages:
> {standard input}:9: Error: suffix or operands invalid for `push'
> {standard input}:11: Error: suffix or operands invalid for `pop'
> {standard input}:14: Error: suffix or operands invalid for `push'
> {standard input}:17: Error: suffix or operands invalid for `pop'
> {standard input}:128: Error: suffix or operands invalid for `pop'
> make[1]: *** [zoom_filter_mmx.o] Error 1

I'm guessing from the output that you have an amd64 system.

I "fixed" this on my system by fixing up mythmusic settings.pro and
removing the "DEFINES += HAVE_MMX" line.

--Rob
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic skipping on OGG files

2005-04-05 Thread Matthew Phillips
On 05/04/2005, at 5:27 PM, James Smith wrote:
On 05/04/2005, at 7:47 AM, James Smith wrote:
On Mon, 2005-04-04 at 22:58 +0930, Matthew Phillips wrote:
On 04/04/2005, at 10:15 PM, James Smith wrote:
Hi all,
I've just got MythTV installed happily, and am very pleased so far.
I'm
having a problem with MythMusic though - it seems to be reporting
track
lengths wrong (generally 20 seconds or so too long), and often 
skips
ahead
a few seconds at random while playing. Most of my music is in OGG
format,
so it may be something specific to this format, I'm not sure. 
Anyone
come
across anything like this?
My post of a few days ago ("MythMusic playback speed too fast") is
probably related - I'm seeing  a similar thing for mp3 playback 
minus
the skipping (they just play fast and end early). But I'm pretty 
sure
it's been happening for a few OGG's in the collection too.
I had a bit of a hack around with module options to see if it was the
soundcard output bitrate or anything, but with no luck. I tried 
setting
the output bitrate explicitly to 44100Hz, but then everything
noticeably
slowed down - pitch changed and everything, but the timer on 
MythMusic
still ended a few seconds early, just as before, so I put it back.

I'm using the built-in AC97 sound device using the ATI IXP driver, 
so I
put this in modprobe.conf to change the bitrate:

options snd-atiixp ac97_clock=44100
If you're not getting pitch shifting though, I guess this isn't your
problem either...
I'm assuming (perhaps incorrectly?) that if sound is working OK for
other components of the system (which it is), then this is more likely
to be related to the mp3/ogg decoders rather than the sound driver.
I haven't had time to look into this properly yet, and indeed I'm not
even sure where to start playing. Does anyone know where to start
tweaking the decoders used by MythMusic?
Don't know if the information in this post is still relevant, but 
maybe it
might point you in the right direction:
http://mythtv.org/pipermail/mythtv-users/2003-April/002234.html
Hmm, it's 2 years old but does sound very similar to what I'm seeing. 
Might be useful - thanks.

Matthew.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic skipping on OGG files

2005-04-05 Thread James Smith

> On 05/04/2005, at 7:47 AM, James Smith wrote:
>> On Mon, 2005-04-04 at 22:58 +0930, Matthew Phillips wrote:
>>> On 04/04/2005, at 10:15 PM, James Smith wrote:
 Hi all,

 I've just got MythTV installed happily, and am very pleased so far.
 I'm
 having a problem with MythMusic though - it seems to be reporting
 track
 lengths wrong (generally 20 seconds or so too long), and often skips
 ahead
 a few seconds at random while playing. Most of my music is in OGG
 format,
 so it may be something specific to this format, I'm not sure. Anyone
 come
 across anything like this?
>>>
>>> My post of a few days ago ("MythMusic playback speed too fast") is
>>> probably related - I'm seeing  a similar thing for mp3 playback minus
>>> the skipping (they just play fast and end early). But I'm pretty sure
>>> it's been happening for a few OGG's in the collection too.
>>
>> I had a bit of a hack around with module options to see if it was the
>> soundcard output bitrate or anything, but with no luck. I tried setting
>> the output bitrate explicitly to 44100Hz, but then everything
>> noticeably
>> slowed down - pitch changed and everything, but the timer on MythMusic
>> still ended a few seconds early, just as before, so I put it back.
>>
>> I'm using the built-in AC97 sound device using the ATI IXP driver, so I
>> put this in modprobe.conf to change the bitrate:
>>
>> options snd-atiixp ac97_clock=44100
>>
>> If you're not getting pitch shifting though, I guess this isn't your
>> problem either...
>
> I'm assuming (perhaps incorrectly?) that if sound is working OK for
> other components of the system (which it is), then this is more likely
> to be related to the mp3/ogg decoders rather than the sound driver.
>
> I haven't had time to look into this properly yet, and indeed I'm not
> even sure where to start playing. Does anyone know where to start
> tweaking the decoders used by MythMusic?

Don't know if the information in this post is still relevant, but maybe it
might point you in the right direction:
http://mythtv.org/pipermail/mythtv-users/2003-April/002234.html

cheers,
-- 
James Smith - [EMAIL PROTECTED]
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic skipping on OGG files

2005-04-04 Thread Matthew Phillips
On 05/04/2005, at 7:47 AM, James Smith wrote:
On Mon, 2005-04-04 at 22:58 +0930, Matthew Phillips wrote:
On 04/04/2005, at 10:15 PM, James Smith wrote:
Hi all,
I've just got MythTV installed happily, and am very pleased so far. 
I'm
having a problem with MythMusic though - it seems to be reporting 
track
lengths wrong (generally 20 seconds or so too long), and often skips
ahead
a few seconds at random while playing. Most of my music is in OGG
format,
so it may be something specific to this format, I'm not sure. Anyone
come
across anything like this?
My post of a few days ago ("MythMusic playback speed too fast") is
probably related - I'm seeing  a similar thing for mp3 playback minus
the skipping (they just play fast and end early). But I'm pretty sure
it's been happening for a few OGG's in the collection too.
I had a bit of a hack around with module options to see if it was the
soundcard output bitrate or anything, but with no luck. I tried setting
the output bitrate explicitly to 44100Hz, but then everything 
noticeably
slowed down - pitch changed and everything, but the timer on MythMusic
still ended a few seconds early, just as before, so I put it back.

I'm using the built-in AC97 sound device using the ATI IXP driver, so I
put this in modprobe.conf to change the bitrate:
options snd-atiixp ac97_clock=44100
If you're not getting pitch shifting though, I guess this isn't your
problem either...
I'm assuming (perhaps incorrectly?) that if sound is working OK for 
other components of the system (which it is), then this is more likely 
to be related to the mp3/ogg decoders rather than the sound driver.

I haven't had time to look into this properly yet, and indeed I'm not 
even sure where to start playing. Does anyone know where to start 
tweaking the decoders used by MythMusic?

Cheers,
Matthew.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic skipping on OGG files

2005-04-04 Thread James Smith
On Mon, 2005-04-04 at 22:58 +0930, Matthew Phillips wrote:
> On 04/04/2005, at 10:15 PM, James Smith wrote:
> > Hi all,
> >
> > I've just got MythTV installed happily, and am very pleased so far. I'm
> > having a problem with MythMusic though - it seems to be reporting track
> > lengths wrong (generally 20 seconds or so too long), and often skips 
> > ahead
> > a few seconds at random while playing. Most of my music is in OGG 
> > format,
> > so it may be something specific to this format, I'm not sure. Anyone 
> > come
> > across anything like this?
> 
> My post of a few days ago ("MythMusic playback speed too fast") is 
> probably related - I'm seeing  a similar thing for mp3 playback minus 
> the skipping (they just play fast and end early). But I'm pretty sure 
> it's been happening for a few OGG's in the collection too.

I had a bit of a hack around with module options to see if it was the
soundcard output bitrate or anything, but with no luck. I tried setting
the output bitrate explicitly to 44100Hz, but then everything noticeably
slowed down - pitch changed and everything, but the timer on MythMusic
still ended a few seconds early, just as before, so I put it back.

I'm using the built-in AC97 sound device using the ATI IXP driver, so I
put this in modprobe.conf to change the bitrate:

options snd-atiixp ac97_clock=44100

If you're not getting pitch shifting though, I guess this isn't your
problem either...

cheers,
-- 
James Smith <[EMAIL PROTECTED]>

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic skipping on OGG files

2005-04-04 Thread Thomas Börkel
HI!
James Smith wrote:
I've just got MythTV installed happily, and am very pleased so far. I'm
having a problem with MythMusic though - it seems to be reporting track
lengths wrong (generally 20 seconds or so too long), and often skips ahead
a few seconds at random while playing. Most of my music is in OGG format,
so it may be something specific to this format, I'm not sure. Anyone come
across anything like this?
I haven't checked the track length, yet, but every now and then (about 
every half hour of playing), I get a 1 second pause. This is not 
reproducable.

I am playing OGG files over NFS (rsize=8192,wsize=8192,tcp,intr). First 
I had FC1 with WLAN and thought this is the cause. But now I have FC3 
and 100 MBit LAN and this still happens, just maybe a little less frequent.

Thomas

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic skipping on OGG files

2005-04-04 Thread Matthew Phillips
On 04/04/2005, at 10:15 PM, James Smith wrote:
Hi all,
I've just got MythTV installed happily, and am very pleased so far. I'm
having a problem with MythMusic though - it seems to be reporting track
lengths wrong (generally 20 seconds or so too long), and often skips 
ahead
a few seconds at random while playing. Most of my music is in OGG 
format,
so it may be something specific to this format, I'm not sure. Anyone 
come
across anything like this?
My post of a few days ago ("MythMusic playback speed too fast") is 
probably related - I'm seeing  a similar thing for mp3 playback minus 
the skipping (they just play fast and end early). But I'm pretty sure 
it's been happening for a few OGG's in the collection too.

But I haven't had any replies as yet, so I assume either (a) this is 
something fairly obscure or (b) not many people are using MythMusic. 
Which would be a pity, since it has a lot of potential.

Cheers,
Matthew.
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic and only 2 audio channels - no surround?

2005-03-31 Thread David
Peter Valdemar Morch wrote:
David myth-at-dgreaves.com |Lists| wrote:
Check to see if alsamixer has got a '3D' or 'duplicate front' switch set
I doubt it's mythmusic - it'll (probably) just send the stereo signal 
to the pcm channel.

Also, another option, on my setup it all goes from the pc (via spdif) 
to an external hi-fi surround processor and I have to turn the 
pro-logic setting off on the processor to prevent it from trying to 
decode the stereo into 'surround sound'.

what hardware setup do you have (ie soundcard -> amplifiers)

I'm using a Sound Blaster Audigy2 and Alsa on a Creative Labs 
Gigaworks 750 7.1 speaker system.
OK.
I've tried configuring Xine and mplayer to just send out 2.0 stereo 
(an mp3 music file), and yes, the sound comes out of all speakers, not 
just the front ones. Now I don't know where the upmixing is done.

If I set the ALSA 'Center' and 'Surround' settings to 0 with:
amixer set Center 0
amixer set Surround 0
, the sound only comes from the two front speakers. But then that is 
true regardless of whether the source is 2.0 or 5.1. :-(

So it seems 2.0 stereo is upmixed to 5.1 in or before ALSA.. But where?
Isn't this a good diagram:
MPlayer \   ---   --   
 +---| Alsa |---| snd-emu10k1 |---| Audigy2 HW |---|GW 750|
Xine/   ---   --   
Since I can adjust the center and rear speaker volumes in alsamixer, 
and it then works/applies for both xine and mplayer, then my guess is 
that the upmixing is taking place in ALSA, right? Or is that done in 
both MPlayer and Xine? If its taking place in ALSA, how do I disable it?


Where do I find any documentation for what the different controls 
actually precisely mean? Such as 'LFE', 'PCM' etc? Anyway, the '3D 
Control - Switch' is off. And what all the alsa.conf settings mean?

no easy reference that I know of...
LFE - Low Frequency Effects (subwoofer rumbles)
PCM - pulse coded modulation - erm, digital (CD/wav) audio format
amixer output:
all looks OK.
try: http://www.alsa-project.org/~james/speaker-test/
David
David
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic and only 2 audio channels - no surround?

2005-03-31 Thread Peter Valdemar Morch
David myth-at-dgreaves.com |Lists| wrote:
Check to see if alsamixer has got a '3D' or 'duplicate front' switch set
I doubt it's mythmusic - it'll (probably) just send the stereo signal to 
the pcm channel.

Also, another option, on my setup it all goes from the pc (via spdif) to 
an external hi-fi surround processor and I have to turn the pro-logic 
setting off on the processor to prevent it from trying to decode the 
stereo into 'surround sound'.

what hardware setup do you have (ie soundcard -> amplifiers)
I'm using a Sound Blaster Audigy2 and Alsa on a Creative Labs Gigaworks 
750 7.1 speaker system.

I've tried configuring Xine and mplayer to just send out 2.0 stereo (an 
mp3 music file), and yes, the sound comes out of all speakers, not just 
the front ones. Now I don't know where the upmixing is done.

If I set the ALSA 'Center' and 'Surround' settings to 0 with:
amixer set Center 0
amixer set Surround 0
, the sound only comes from the two front speakers. But then that is 
true regardless of whether the source is 2.0 or 5.1. :-(

So it seems 2.0 stereo is upmixed to 5.1 in or before ALSA.. But where?
Isn't this a good diagram:
MPlayer \   ---   --   
 +---| Alsa |---| snd-emu10k1 |---| Audigy2 HW |---|GW 750|
Xine/   ---   --   
Since I can adjust the center and rear speaker volumes in alsamixer, and 
it then works/applies for both xine and mplayer, then my guess is that 
the upmixing is taking place in ALSA, right? Or is that done in both 
MPlayer and Xine? If its taking place in ALSA, how do I disable it?


Where do I find any documentation for what the different controls 
actually precisely mean? Such as 'LFE', 'PCM' etc? Anyway, the '3D 
Control - Switch' is off. And what all the alsa.conf settings mean?


Here is the modules.conf section from alsaconf and the output from `amixer`:
# --- BEGIN: Generated by ALSACONF, do not edit. ---
# --- ALSACONF verion 1.0.0rc2 ---
alias char-major-116 snd
alias char-major-14 soundcore
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
alias snd-card-0 snd-emu10k1
alias sound-slot-0 snd-emu10k1
# --- END: Generated by ALSACONF, do not edit. ---
amixer output:
Simple mixer control 'Master',0
  Capabilities: pvolume
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 100
  Front Left: Playback 60 [60%]
  Front Right: Playback 60 [60%]
Simple mixer control 'Tone',0
  Capabilities: pswitch
  Playback channels: Front Left - Front Right
  Mono:
  Front Left: Playback [off]
  Front Right: Playback [off]
Simple mixer control 'Bass',0
  Capabilities: volume
  Playback channels: Front Left - Front Right
  Limits: 0 - 40
  Mono: 20 [50%]
  Front Left:
  Front Right:
Simple mixer control 'Treble',0
  Capabilities: volume
  Playback channels: Front Left - Front Right
  Limits: 0 - 40
  Mono: 20 [50%]
  Front Left:
  Front Right:
Simple mixer control '3D Control - Switch',0
  Capabilities: pswitch pswitch-joined
  Playback channels: Mono
  Mono: Playback [off]
Simple mixer control '3D Control Sigmatel - Depth',0
  Capabilities: volume volume-joined
  Playback channels: Mono
  Limits: 0 - 3
  Mono: 0 [0%]
Simple mixer control 'PCM',0
  Capabilities: pvolume cvolume
  Playback channels: Front Left - Front Right
  Capture channels: Front Left - Front Right
  Limits: Playback 0 - 100 Capture 0 - 100
  Front Left: Playback 48 [48%] Capture 48 [48%]
  Front Right: Playback 48 [48%] Capture 48 [48%]
Simple mixer control 'PCM Center',0
  Capabilities: pvolume pvolume-joined
  Playback channels: Mono
  Limits: Playback 0 - 100
  Mono: Playback 100 [100%]
Simple mixer control 'PCM Front',0
  Capabilities: pvolume
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 100
  Front Left: Playback 100 [100%]
  Front Right: Playback 100 [100%]
Simple mixer control 'PCM LFE',0
  Capabilities: pvolume pvolume-joined
  Playback channels: Mono
  Limits: Playback 0 - 100
  Mono: Playback 100 [100%]
Simple mixer control 'PCM Surround',0
  Capabilities: pvolume
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 100
  Front Left: Playback 100 [100%]
  Front Right: Playback 100 [100%]
Simple mixer control 'Surround',0
  Capabilities: pvolume
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 100
  Front Left: Playback 100 [100%]
  Front Right: Playback 100 [100%]
Simple mixer control 'Center',0
  Capabilities: pvolume pvolume-joined
  Playback channels: Mono
  Limits: Playback 0 - 100
  Mono: Playback 100 [100%]
Simple mixer control 'LFE',0
  Capabilities: pvolume pvolume-joined
  Playback channels: Mono
  Limits: Playback 0 - 100
  Mono: Playback 100 [100%]
Simple mixer control 'Music',0
  Capabilities: pvolume cvolume
  Playback channels: Front Left - Front Right
  Capture channels: Front Left - Front 

Re: [mythtv-users] MythMusic and only 2 audio channels - no surround?

2005-03-31 Thread David
Peter Valdemar Mørch wrote:
Hi there,
I have a surround setup, and I really enjoy that for TV and MythVideo. 
But MythMusic also plays music in all 5 speakers, and I'd like for 
MythMusic to just use 2 stereo speakers.

I'm using a Sound Blaster Audigy2 and Alsa.
If I have to choose, I'd rather have TV and Music both use 2 speakers 
than they both use 5, but I'd prefer TV to continue to use 5 speakers 
while Music uses 2.

I use Xine for MythVideo, and the sound setup for Xine is separate 
from myth altogether so I suspect any settings will be local to MythTV 
and MythMusic.

Anybody succeeded doing this that? How?
Peter
Hi Peter,
Check to see if alsamixer has got a '3D' or 'duplicate front' switch set
I doubt it's mythmusic - it'll (probably) just send the stereo signal to 
the pcm channel.

Also, another option, on my setup it all goes from the pc (via spdif) to 
an external hi-fi surround processor and I have to turn the pro-logic 
setting off on the processor to prevent it from trying to decode the 
stereo into 'surround sound'.

what hardware setup do you have (ie soundcard -> amplifiers)
David
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic ID3 Tags FIXED

2005-03-26 Thread thor
On Friday 25 March 2005 09:47 pm, SpikeyGG wrote:

> Also, I found a bug in mythmusic...
>
> If you use the playlist structured navigation instead of the single
> playlist view and from the myth menu select music.  Then before drilling
> down into a playlist to select a song (no songs are playing yet) hit the
> mute key (a pipe, one of these |).  My mythfrontend crashes out when I do
> it.

 So it does. This is fixed in CVS. Thanks.

-thor
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic on Suse 9.2 x86_64

2005-03-21 Thread Ian Forde
On Mon, 2005-03-21 at 14:44 -0800, leith wrote:
>  From what I can tell, mythmusic is having trouble compiling on x86_64 
> platforms.
> 
> however, I have seen rpms out there for FC3, but none for Suse.
> 
> So is there a way I can get it to compile for Suse 9.2 x86_64?

Yep - disable the HAVE_MMX line in mythmusic/settings.pro...

-I

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic tables missing and not being created

2005-03-11 Thread Louie Ilievski
Louie Ilievski wrote:
I've been running Myth CVS for quite a while now, and recently wanted to
start playing with MythMusic again.  I noticed that nothing I put into
my music directory shows up when I go to "Listen to Music."  I ran the
frontend in a window to get some information, and I get errors such as
"Table 'mythconverg.musicplaylist' doesn't exist" among others which
seem to be directly related.  I looked in the database, and not only do
I not see musicplaylist, but also I do not see musicmetadata ( I believe
that's what it was called ).  These do not seem to be getting created,
either.  I've re-installed MythMusic, but see no difference.  My
settings for it are set correctly, pointing to the right path and all.
Is this a CVS issue?  I keep up with all the lists every day and have
not seen any discussion on this except for last week sometime when the
database queries were wrapped into that global class or whatever.  Any
ideas?

___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

Whoa, slow it down there, guys.  I can't keep up with reading all these
replies  :-)


signature.asc
Description: OpenPGP digital signature
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] MythMusic tables missing and not being created

2005-03-10 Thread Mathew Mrosko
On Wednesday 09 March 2005 02:33 pm, Louie Ilievski wrote:
> Any
> ideas?
Nope, sorry.  Hopefully somebody can help!

-- 
Mathew Mrosko ([EMAIL PROTECTED])
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] mythmusic not resolving cd information

2005-02-22 Thread Josh Burks
On Fri, 28 Jan 2005 22:00:39 -0500, Charles Waddell
<[EMAIL PROTECTED]> wrote:
> I cannot get mythmusic to resolve any information about cd's. I currently
> have automatically import information checked under setup->music->general.
> Upon consulting Google, I was told that I might deleting my .cddbserverrc
> file and .cddb directory. they both were readded upon restarting mythmusic,
> but they still did not resolve any information. the cddb resource I am using
> is hosted at freedb. Is there another db I could use or does anybody have
> any advice on how to error check this problem.
> 

I was having similar problems. In the .cdserverrc file, I changed the
ACCESS and SERVER lines to read as follows:
 
ACCESS=REMOTE
SERVER=cddb://freedb.freedb.org:8880/~cddb/cddb.cgi CDDB

The above was:
SERVER=http://freedb.freedb.org:80/~cddb/cddb.cgi CDDB

Apparently, my KDE Control Center wasn't changing the .cdserverrc file
correctly, so I hand-edited it.

YMMV,

Josh
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic itunes share client?

2005-02-21 Thread Jason Kraftcheck
Jim Kusznir wrote:
> Hello all:
> 
> I was wondering if it was possible to make mythmusic act as a client for
> an iTunes shared library?
> 
> I have a windoze box with iTunes and its library of music.  As the
> library of music is "managed" by someone else in the family who is
> uncomfortable with linux, moving the itunes collection to linux and
> having it share it is not an acceptable option.
> 
> I found:
> http://gentoo-wiki.com/HOWTO_Apple_ITunes_Server
> which talks about creating the iTunes share on a linux box, but I want
> to do the opposite, and my googling hasn't turned up any results to this
> end.

It is certainly possible to access music on a Windows box from
mythmusic.  This method worked fine for me when accessing regular .mp3
files on a Windows box.  I don't know anything about iTunes, so perhaps
there are other issues related with the format the music is saved in?
This may not work at all for you.

To access any windows folder under linux, you can use smbfs to mount a
windows file share.  This requires enabling file sharing on Windows,
allowing it through the Windows firewall (if XP SP2), and creating a
file share for the Windows folder.  I'll assume the Windows name for the
PC is "windowsbox" and the share name for the shared music folder is
"itunes".  I will also assume that the username and password for the
windows file share are "winuser" and "winpass".  Substitute as appropriate.

To test if the PC is correctly configured, try the command:
  smbclient -L windowsbox
You should see the shared directory in the list of output services.

>From here on, you'll probably need to be root.

You can test mounting the share with the following command:
  smbmount //windowsbox/itunes /mnt -o username=winuser
If that works, you should be prompted for a password.  After entering
the password if you "ls /mnt" you should see the contents of the windows
folder.  Now unmount it:
  umount /mnt

You need to create a directory where you want the mount point to be on
your mythtv box.  I don't recall what the default location mythmusic
searches for music is, but it's in the settings.  I'll assume it is
/var/myth/music for now.  If you are using some other directory, either
because you changed it or because that is not the correct default,
substitute as appropriate.

If the only music you want to access is on the windows box, you can
mount the windows folder directly on /var/myth/music.  If you have some
other music local on the mythtv box, then create a subdirectory to mount
it on, for example /var/myth/music/windows.

To make the mythtv box mount the windows file share automatically on
boot, add the following line to your /etc/fstab:
  //windowsbox/itunes /var/myth/music/windows smbfs \
  username=winuser,password=winpass  0  2
(remove '\' and combine into one line)

To test it, do
  mount -a
  ls /var/myth/music/windows

If everything has worked so far, then just run the "scan for new music"
option from the settings to update the database.

One important note about this:  if the windows box becomes unavailable
(for example because it is shut down) it takes a long time for
filesystem operations to time out.  This makes mythmusic *very*
unresponsive.






___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


Re: [mythtv-users] Mythmusic itunes share client?

2005-02-21 Thread Thom Paine
> I was wondering if it was possible to make mythmusic act as a client for
> an iTunes shared library?
> 
A down and dirty way would be to run samba on the mythbox and have the
itunes server on the windows box save the music on the mythbox via the
samba share.

But then you need more storage in the mythbox and you can't use your
windoze box to host the music.

I'm not sure if you can mount the itunes share with samba and have the
mythmusic use the windoze share that way.

I don't use mythmusic though.

-- 
-=/>Thom
___
mythtv-users mailing list
mythtv-users@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users


  1   2   >