PC Review


Reply
Thread Tools Rate Thread

ALB Slideshow

 
 
komobu
Guest
Posts: n/a
 
      9th Mar 2007
Hi;

I have a tv that will play a slideshow of my digital photos if I
create an ALB file. Without the ALB file, it wont switch the
photos...it will just display whatever photo is up indefinitely. As a
result, I need to create an ALB file. The TV had a generic one that I
got to work...Here is my code:
<?xml version="1.0" encoding="ISO-885h9-1" ?>
<philips-slideshow version="1.0">
<title>Pats Slideshow</Title>
<audio>Every.mp3</audio>
<slide-duration>15</slide-duration>
<slides>
<slide>dsc00864.jpg </slide>
<slide>dsc01012.jpg </slide>
<slide>dsc01013.jpg </slide>
<slide>dsc01014.jpg </slide>
<slide>dsc01015.jpg </slide>
<slide>dsc01017.jpg </slide>
<slide>dsc01018.jpg </slide>
<slide>dsc01019.jpg </slide>
<slide>dsc01020.jpg </slide>
<slide>dsc01021.jpg </slide>
</slides>
</philips-slideshow>

It works ok...but I have a couple of questions.

If I want to play several songs, how do I add them? / get them to
play one after the other?

Any known software that will generate this ALB file for me instead of
me physically typing in every file name?

Any place known where I can obtain more info about the use and
capabilities of an ALB file?

Thanks for any advice.

Pat

 
Reply With Quote
 
 
 
 
=?Utf-8?B?c3Ryb3Jn?=
Guest
Posts: n/a
 
      23rd Mar 2007
not sure about software that will generate the .alb file for you. i can
offer some advice on how to play multiple songs though. you can create a
playlist file (.pls) in notepad that lists the songs you want to play with
the slideshow. her is an example:

---begin playlist file
[playlist]
NumberOfEntries=2

File1=The Raconteurs-Broken Boy Soldiers-01-Steady, As She Goes-320kbps.mp3
Title1=Steady, As She Goes
Length1=-1

File2=The Raconteurs-Broken Boy Soldiers-02-Hands-320kbps.mp3
Title1=Hands
Length1=-1

Version=2
---end playlist file

now in your .alb file, enter the filename for you playlist file instead of
the individual song file:
<audio>MyPlaylist.pls</audio>

check out wikipidia for more info on the .pls file:
http://en.wikipedia.org/wiki/PLS_(file_format)

hope this helps

"komobu" wrote:

> Hi;
>
> I have a tv that will play a slideshow of my digital photos if I
> create an ALB file. Without the ALB file, it wont switch the
> photos...it will just display whatever photo is up indefinitely. As a
> result, I need to create an ALB file. The TV had a generic one that I
> got to work...Here is my code:
> <?xml version="1.0" encoding="ISO-885h9-1" ?>
> <philips-slideshow version="1.0">
> <title>Pats Slideshow</Title>
> <audio>Every.mp3</audio>
> <slide-duration>15</slide-duration>
> <slides>
> <slide>dsc00864.jpg </slide>
> <slide>dsc01012.jpg </slide>
> <slide>dsc01013.jpg </slide>
> <slide>dsc01014.jpg </slide>
> <slide>dsc01015.jpg </slide>
> <slide>dsc01017.jpg </slide>
> <slide>dsc01018.jpg </slide>
> <slide>dsc01019.jpg </slide>
> <slide>dsc01020.jpg </slide>
> <slide>dsc01021.jpg </slide>
> </slides>
> </philips-slideshow>
>
> It works ok...but I have a couple of questions.
>
> If I want to play several songs, how do I add them? / get them to
> play one after the other?
>
> Any known software that will generate this ALB file for me instead of
> me physically typing in every file name?
>
> Any place known where I can obtain more info about the use and
> capabilities of an ALB file?
>
> Thanks for any advice.
>
> Pat
>
>

 
Reply With Quote
 
=?Utf-8?B?c3Ryb3Jn?=
Guest
Posts: n/a
 
      23rd Mar 2007
i saw an error in the sample code for the second song. it should read:

File2=The Raconteurs-Broken Boy Soldiers-02-Hands-320kbps.mp3
Title2=Hands
Length1=-1

here is the explanation of the .pls file variables:
Header

[playlist] : This tag indicates that it is a Playlist File

NumberOfEntries : This variable indicates the number of tracks

Track Entry
Assuming track entry #X

FileX : Variable defining location of stream.
TitleX : Defines track title.
LengthX : Length in seconds of track. Value of -1 indicates indefinite.

Footer

Version : Playlist version. Currently only a value of 2 is valid.

thanks...tom

"strorg" wrote:

> not sure about software that will generate the .alb file for you. i can
> offer some advice on how to play multiple songs though. you can create a
> playlist file (.pls) in notepad that lists the songs you want to play with
> the slideshow. her is an example:
>
> ---begin playlist file
> [playlist]
> NumberOfEntries=2
>
> File1=The Raconteurs-Broken Boy Soldiers-01-Steady, As She Goes-320kbps.mp3
> Title1=Steady, As She Goes
> Length1=-1
>
> File2=The Raconteurs-Broken Boy Soldiers-02-Hands-320kbps.mp3
> Title1=Hands
> Length1=-1
>
> Version=2
> ---end playlist file
>
> now in your .alb file, enter the filename for you playlist file instead of
> the individual song file:
> <audio>MyPlaylist.pls</audio>
>
> check out wikipidia for more info on the .pls file:
> http://en.wikipedia.org/wiki/PLS_(file_format)
>
> hope this helps
>
> "komobu" wrote:
>
> > Hi;
> >
> > I have a tv that will play a slideshow of my digital photos if I
> > create an ALB file. Without the ALB file, it wont switch the
> > photos...it will just display whatever photo is up indefinitely. As a
> > result, I need to create an ALB file. The TV had a generic one that I
> > got to work...Here is my code:
> > <?xml version="1.0" encoding="ISO-885h9-1" ?>
> > <philips-slideshow version="1.0">
> > <title>Pats Slideshow</Title>
> > <audio>Every.mp3</audio>
> > <slide-duration>15</slide-duration>
> > <slides>
> > <slide>dsc00864.jpg </slide>
> > <slide>dsc01012.jpg </slide>
> > <slide>dsc01013.jpg </slide>
> > <slide>dsc01014.jpg </slide>
> > <slide>dsc01015.jpg </slide>
> > <slide>dsc01017.jpg </slide>
> > <slide>dsc01018.jpg </slide>
> > <slide>dsc01019.jpg </slide>
> > <slide>dsc01020.jpg </slide>
> > <slide>dsc01021.jpg </slide>
> > </slides>
> > </philips-slideshow>
> >
> > It works ok...but I have a couple of questions.
> >
> > If I want to play several songs, how do I add them? / get them to
> > play one after the other?
> >
> > Any known software that will generate this ALB file for me instead of
> > me physically typing in every file name?
> >
> > Any place known where I can obtain more info about the use and
> > capabilities of an ALB file?
> >
> > Thanks for any advice.
> >
> > Pat
> >
> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Slideshow to DVD dlw Microsoft Powerpoint 5 29th Dec 2007 06:30 PM
How do I burn cd slideshow with music. can't get music &slideshow =?Utf-8?B?YnJpZGFsIG1pbmlhdHVyZXM=?= Microsoft Powerpoint 1 28th Oct 2005 10:34 PM
How do I zoom in on a slide DURING a slideshow w/o stop slideshow =?Utf-8?B?Q2FsZXN0YQ==?= Microsoft Powerpoint 5 24th May 2005 09:06 PM
slideshow shaving girl Windows XP Photos 7 23rd Nov 2004 01:23 AM
Slideshow Jack Windows XP Photos 2 14th Sep 2004 06:59 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:05 AM.