Unoffical empeg BBS

Quick Links: Empeg FAQ | RioCar.Org | Hijack | BigDisk Builder | jEmplode | emphatic
Repairs: Repairs

Page 1 of 2 1 2 >
Topic Options
#71150 - 13/02/2002 22:36 JEmplode 2.0b11
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
After much laziness, the next official JEmplode release is out... snag it at http://www.jempeg.org or http://www.sourceforge.net/projects/jempeg

Mike

Top
#71151 - 14/02/2002 05:05 Re: JEmplode 2.0b11 [Re: mschrag]
tms13
old hand

Registered: 30/07/2001
Posts: 1115
Loc: Lochcarron and Edinburgh
A bug report - it still isn't using ISO-8859.1 to match the player. All non-ASCII characters in playlist and track names appear as square boxes, and if I edit their properties, the name on the player is changed to have question-marks in those positions.
_________________________
Toby Speight
030103016 (80GB Mk2a, blue)
030102806 (0GB Mk2a, blue)

Top
#71152 - 14/02/2002 06:33 Re: JEmplode 2.0b11 [Re: tms13]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Does this only happen on Mac OS X? I think it works on Windows... Can you give me an example character (ASCII char #) to try? If my first sentence is true, then I wonder if there is a bug in OS X Java, because I thought the default font was supposed to be an 8859 font. I'll look into it...

Thanks
Mike

Top
#71153 - 14/02/2002 06:48 Re: JEmplode 2.0b11 [Re: mschrag]
tms13
old hand

Registered: 30/07/2001
Posts: 1115
Loc: Lochcarron and Edinburgh
I'm using Linux (2.4,10ish, Blackdown J2SE 1.3.1).

All accented characters are affected - one example is for the playlist "Nądurra" (that's a-grave after the N).

LC_ALL=en_GB

I don't think it's merely a font issue, as writing back to the player didn't preserve the characters. Do you use the default String/byte converters anywhere (e.g. new String(byte[]) or String.getBytes() without specifying an encoding - or equivalently, new StreamReader(InputStream) or new StreamWriter(OutputStream)?
_________________________
Toby Speight
030103016 (80GB Mk2a, blue)
030102806 (0GB Mk2a, blue)

Top
#71154 - 14/02/2002 07:13 Re: JEmplode 2.0b11 [Re: mschrag]
Nosferatu
enthusiast

Registered: 24/08/2001
Posts: 344
Loc: France, Champagne
Heah That's GREAT !!!!!

I like the real time grab sreen ....

Now what i'd like is a Hijack Updater from JEMplode , that would Rock !!!!

Again Congratulations !!!
_________________________
Empeg IIa - 10 Gb - Red Fascia - Tuner, the day is coming - I Will Strike From the Grey -

Top
#71155 - 14/02/2002 07:18 Re: JEmplode 2.0b11 [Re: tms13]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Interesting ... I think you might be right. I need to look into it, but I'm basically doing a (this is summarized):

String title = <whateveryoutyped>;
...
ByteArrayOutputStream baos = new ByteArrayOutputStream();
baos.print(title);

So the question is, what is that doing behind the scenes......

Mike

Top
#71156 - 14/02/2002 07:22 Re: JEmplode 2.0b11 [Re: Nosferatu]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
I actually don't use Hijack (I know, I'm behind the times )... What is the Hijack updater and what's required to implement it? Is this like the Emplode upgrade tool? (i.e. a way to flash a new kernel on?), because we do have that ... Maybe it can be adapted.

Top
#71157 - 14/02/2002 07:22 Re: JEmplode 2.0b11 [Re: mschrag]
tms13
old hand

Registered: 30/07/2001
Posts: 1115
Loc: Lochcarron and Edinburgh
In reply to:

ByteArrayOutputStream baos = new ByteArrayOutputStream();
baos.print(title);




Are you sure? ByteArrayOutputStream doesn't have any print() methods, at least in 1.3.1.

If you know which class, I can download the source bundle and have a read...
_________________________
Toby Speight
030103016 (80GB Mk2a, blue)
030102806 (0GB Mk2a, blue)

Top
#71158 - 14/02/2002 07:44 Re: JEmplode 2.0b11 [Re: mschrag]
TommyE
enthusiast

Registered: 08/06/1999
Posts: 356
Loc: NORWAY
Just downloaded and tried Jemplode for the first time in a long time.
Looks great, but any idea why I can't get properties of any tracks??
The properties menu bar just stays blue and no matter how many times
I select it, no properties....

TommyE

Top
#71159 - 14/02/2002 08:15 Re: JEmplode 2.0b11 [Re: mschrag]
Nosferatu
enthusiast

Registered: 24/08/2001
Posts: 344
Loc: France, Champagne
Yes a flash kernel utility !!!

My think is simple (surely not to implement but ...) :

You set you preferences on Hijack in a Speciel Menu :
- Enable checking for new Hijack versions
- Enable Updating kernel trough selected Port.
- Flash kernel on port COM1, COM2, FTP (eventually set IP address)
- Set the downlaod directory.

If I check the Enable the Hijack Versions Checking, the programm would 'only' connect to Mark's site and download the kernel.
It would verify in the dowload directory.
That will always download the latest hijack kernel but no update.
eventually, Popup user of the Downloaded Version ...

Then if I check the Flash Enable,ask user if Want to upgrade to hijack Vxxx, then the program will update the Player via the selected port.


Is it to long to do or could you realize it partially or not at all ?
_________________________
Empeg IIa - 10 Gb - Red Fascia - Tuner, the day is coming - I Will Strike From the Grey -

Top
#71160 - 14/02/2002 08:28 Re: JEmplode 2.0b11 [Re: tms13]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Whoops .. my bad you're right, I read past one of the lines.

again, a summary of roughly what happens:

ByteArrayOutputStream baos = new BAOS();
PrintWriter pw = new PrintWriter(new OutputStreamWriter(baos));
pw.print(tagvalue);

I think you can instantiate a PrintWriter with a character encoding, but I'm surprised the default doesn't work properly... I suspect that the encoding format of Java and the encoding format of the Empeg are different. I would imagine that PrintWriter uses UTF-8 by default.

Mike

Top
#71161 - 14/02/2002 08:28 Re: JEmplode 2.0b11 [Re: TommyE]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
So if you select a track in the playlist view (the table view on the right), and double click, does it bring up Properties? Can you right click and try Properties ...? What OS are you on?

Top
#71162 - 14/02/2002 08:31 Re: JEmplode 2.0b11 [Re: Nosferatu]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
So you basically want a tool that will always keep your Hijack kernel up to date with Mark's latest release? When you download a hijack kernel, do you use the Empeg upgrader to put the kernel on your player? (i.e. is the file the same format as the Empeg guys' upgrade files?)

Top
#71163 - 14/02/2002 08:38 Re: JEmplode 2.0b11 [Re: mschrag]
Nosferatu
enthusiast

Registered: 24/08/2001
Posts: 344
Loc: France, Champagne
Not the Empeg Upgrader.

Mark made a FTP server in the Hijack and via SITE FTP Commands you can Upgrade the Kernel in 'simply' writing the new kernel on kernel_flash device.

The 'only thing' to see is the connexion to Mark's site downloading the last kernel release.

The upgrade of the kernel is only a command line tool for serial update and a connection to the player via FTP and SITE commands.

I recommend you to take a look on Mark's site, his explanations would be better that mine ....

Finally, my wish is to have a All in One Application to manage my Riocar .
_________________________
Empeg IIa - 10 Gb - Red Fascia - Tuner, the day is coming - I Will Strike From the Grey -

Top
#71164 - 14/02/2002 08:53 Re: JEmplode 2.0b11 [Re: mschrag]
tms13
old hand

Registered: 30/07/2001
Posts: 1115
Loc: Lochcarron and Edinburgh
new OutputStreamWriter(OutputStream) uses the "default character encoding", i.e. it depends on the user's locale. According to Sun, "The default encoding is determined during virtual-machine startup and typically depends upon the locale and encoding being used by the underlying operating system."

What you need is new OutputStreamWriter(baos, "ISO-8859-1");

This is declared to throw UnsupportedCodingException, but must not in this case because all Java platforms are required to support this encoding.

We might have a corresponding issue in the InputStream/Reader interface in the other direction.

I'm reasonably confident that the Empeg protocol uses ISO-8859-1 for everything, but that's just an educated guess based on observations.
_________________________
Toby Speight
030103016 (80GB Mk2a, blue)
030102806 (0GB Mk2a, blue)

Top
#71165 - 14/02/2002 08:57 Re: JEmplode 2.0b11 [Re: tms13]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Great! I'll put this in tonight when I get home ... Thanks for the info.

Mike

Top
#71166 - 14/02/2002 10:33 Re: JEmplode 2.0b11 [Re: mschrag]
jag
new poster

Registered: 14/02/2002
Posts: 21
I have the same problem with the properties.
I am running MacOS X.
The properties doesn't come up when I select it from the menu or from the right click menu or when I double click.

-Jeremy

Top
#71167 - 14/02/2002 10:54 Re: JEmplode 2.0b11 [Re: mschrag]
TommyE
enthusiast

Registered: 08/06/1999
Posts: 356
Loc: NORWAY
Hello.

I'm running WinXP.
It's the same if I doubleclick, right mouse -> properties or select the properties from the toolbar.

TommyE

Top
#71168 - 14/02/2002 11:05 Re: JEmplode 2.0b11 [Re: TommyE]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Wow ... Apparently I just completely broke Properties Pretty crucial feature to be broken. I'll look at it tonight and put new installers up.

Top
#71169 - 14/02/2002 11:29 Re: JEmplode 2.0b11 [Re: mschrag]
loren
carpal tunnel

Registered: 23/08/2000
Posts: 3826
Loc: SLC, UT, USA
NICE. I haven't installed Jemplode since your first release, and it's now impressive to the point where i probably won't be using emplode much any more.

And i second the vote for a Hijack .zimage installer/upgrader. This would allow non linux/Windows users to install hijack easily. (or is there a way to do this already that i'm not aware of... let me know and i'll stick it in the FAQ)
_________________________
|| loren ||

Top
#71170 - 14/02/2002 11:30 Re: JEmplode 2.0b11 [Re: loren]
rob
carpal tunnel

Registered: 21/05/1999
Posts: 5335
Loc: Cambridge UK
Ah, but you haven't seen what we're doing to emplode

Rob

Top
#71171 - 14/02/2002 11:32 Re: JEmplode 2.0b11 [Re: mschrag]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31578
Loc: Seattle, WA
Hey, the configurable filenames for downloading are nice.

Is there any way to offer the following option (I know this would be extra work but...)

One of the things that would be useful is to have the track number as part of the file name so that the songs are in the proper order. I think it can do this just by putting the {track#} tag in there in the options. Cool.

But not all of my MP3s have the track number field filled out. Some of them are just on the player in order of "Position" in a playlist.

Is there a way we could also have {position} as an available field for the file name if we're dowloading an entire playlist? Perhaps even zero-padded to two or three digits?
_________________________
Tony Fabris

Top
#71172 - 14/02/2002 11:32 Re: JEmplode 2.0b11 [Re: rob]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31578
Loc: Seattle, WA
ROB, STOP TEASING!
_________________________
Tony Fabris

Top
#71173 - 14/02/2002 11:36 Re: JEmplode 2.0b11 [Re: tfabris]
loren
carpal tunnel

Registered: 23/08/2000
Posts: 3826
Loc: SLC, UT, USA
yeah ROB!!!
_________________________
|| loren ||

Top
#71174 - 14/02/2002 11:47 Re: JEmplode 2.0b11 [Re: rob]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
I hate when they make these announcements ... Every time there's been one of these, it means I have a lot of work ahead of me

Top
#71175 - 14/02/2002 11:48 Re: JEmplode 2.0b11 [Re: tfabris]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Yeah -- I can do that ... What do you think on the zero pad issue? automatically pad it to 3 digits, or something like:
{position:3} to specify 3 digit pad (and allow this on any numeric fields)?

Top
#71176 - 14/02/2002 11:52 Re: JEmplode 2.0b11 [Re: mschrag]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31578
Loc: Seattle, WA
That would be cool, if you wanted to go to that kind of trouble. Awesome.
_________________________
Tony Fabris

Top
#71177 - 14/02/2002 12:12 Re: JEmplode 2.0b11 [Re: rob]
eternalsun
Pooh-Bah

Registered: 09/09/1999
Posts: 1721
Loc: San Jose, CA
You guys are stealing tricks right ouf of the Microsoft marketing machine bag.

Calvin

Top
#71178 - 14/02/2002 13:12 Re: JEmplode 2.0b11 [Re: mschrag]
TommyE
enthusiast

Registered: 08/06/1999
Posts: 356
Loc: NORWAY
Nice.
Also, Jemplode seems a bit faster than Emplode I think. At least in screen updates.
This is great.

TommyE

Top
#71179 - 14/02/2002 15:00 Re: JEmplode 2.0b11 [Re: mschrag]
ellweber
member

Registered: 14/01/2002
Posts: 156
Loc: Saratoga, CA, USA
I wonder if the following error message might have an easy answer. I can run JEmplode under OSX but when I try to use it with OS 9.2.1 on my Mac I get this message:

java.lang.NoClassDefFoundError: javax/swing/UIManager
at org.jempeg.empeg.emplode.Main.main(Compiled Code)
at com.zerog.lax.LAX.launch(Compiled Code)
at com.zerog.lax.LAX.main(Unknown Source)
at com.apple.mrj.JManager.JMStaticMethodDispatcher.run(JMAWTContextImpl.java)
at java.lang.Thread.run(Thread.java)

Not being well (or at all) versed in Java, I am at a loss. Older versions of JEmplode did run under what I think are the same conditions.

Any help would be greatly appreciated.

Lynn

Top
#71180 - 14/02/2002 16:08 Re: JEmplode 2.0b11 [Re: ellweber]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Hi Lynn -- The official stance is that we are no longer supporting Java versions below 1.2. Unfortunately that includes Mac OS version below 10. That's the official stance. However, I tried to be very careful and not actually use 1.2 features in a way that would break 1.1 versions ... The big difference now is that we are not bundling Swing (the UI toolkit) in the installer, since it's built into 1.2/1.3 JDK's. You can download Swing 1.1.1 from http://java.sun.com/products/jfc/download.html and try to get it to work with that. If I get some time, I'll see if I can get it up and running in a 1.1 VM and I'll let you know.

Mike

Top
#71181 - 14/02/2002 16:12 Re: JEmplode 2.0b11 [Re: mschrag]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31578
Loc: Seattle, WA
Unfortunately that includes Mac OS version below 10. That's the official stance.

This is kind of disappointing to hear, since the original driving force behind the development of a Java emplode was so that Mac users would be able to run the player. Don't you find that as ironic as I do?
_________________________
Tony Fabris

Top
#71182 - 14/02/2002 16:21 Re: JEmplode 2.0b11 [Re: tfabris]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Yes and no -- Most of the feedback I have gotten is from Mac OS X and Linux users actually ... I don't hear too much from OS 9 folks. Your mocking makes me want to fix it now though Seriously though, I have tried to avoid using 1.2 features -- I don't know about the MP3 import code since that's Daniel's and I don't have the source. If that code is 1.2 "clean" then it really shouldn't be a problem... Pushing for more people to go to OS X makes life easier, though, because the Java support is going to be much better and sadly Apple has basically said that they will never make a JDK 1.2 for OS 9 and below.

I'll take a look and see how far off of 1.1 we are now...

Mike

Top
#71183 - 14/02/2002 16:24 Re: JEmplode 2.0b11 [Re: mschrag]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31578
Loc: Seattle, WA
No, no, I wasn't mocking. No, I believe the term is "busting your balls".
_________________________
Tony Fabris

Top
#71184 - 14/02/2002 17:45 Re: JEmplode 2.0b11 [Re: jag]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Yeah -- I really screwed the pooch on this one ... I accidentally built the final jar without including Daniel's MP3 parser (which includes the Genre list), so it was basically bombing when it tried to display the Properties dialog. I'm rebuilding installers now and I'll put them up in the next half hour or so.

Top
#71185 - 14/02/2002 22:15 Re: JEmplode 2.0b11 [Re: mschrag]
Neutrino
addict

Registered: 23/01/2002
Posts: 506
Loc: The Great Pacific NorthWest
Just a quick 'Thank You' JEmplode is very nice and has know taken the place of Emplode on my Windows systems.
_________________________
No matter where you might be, there you are.

Top
#71186 - 15/02/2002 00:08 Re: JEmplode 2.0b11 [Re: Neutrino]
tonyc
carpal tunnel

Registered: 27/06/1999
Posts: 7058
Loc: Pittsburgh, PA
Just a quick 'Thank You' JEmplode is very nice and has know taken the place of Emplode on my Windows systems.

Wow, is it that good???

_________________________
- Tony C
my empeg stuff

Top
#71187 - 15/02/2002 07:28 Re: JEmplode 2.0b11 [Re: Neutrino]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
I don't hear too many Windows people switching to jEmplode ... Kind of interesting to hear. Thanks for the Thanks.

Mike

Top
#71188 - 15/02/2002 07:29 Re: JEmplode 2.0b11 [Re: mschrag]
TommyE
enthusiast

Registered: 08/06/1999
Posts: 356
Loc: NORWAY
Works great now, thanks.

TommyE

Top
#71189 - 15/02/2002 10:42 Re: JEmplode 2.0b11 [Re: mschrag]
loren
carpal tunnel

Registered: 23/08/2000
Posts: 3826
Loc: SLC, UT, USA
I switched... though Rob's hint "wait til you see what we're doing with emplode" means you could have some catching up to do soon. =]
_________________________
|| loren ||

Top
#71190 - 16/02/2002 15:33 Re: JEmplode 2.0b11 [Re: tfabris]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
There is a prerelease jar on http://64.83.11.163/jemplode (my dns provider is down right now) that includes support for "pos" and padding.

Mike

Top
#71191 - 16/02/2002 15:35 Re: JEmplode 2.0b11 [Re: tms13]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
There is a prerelease jar on http://64.83.11.163/jemplode (my dns provider is down right now) that includes support much better support for ISO-8859-1 everywhere (I think I caught them all). Thanks a lot for this tip!

(replace jemplode20.jar in your install directory for jemplode20-prerelease.jar -- you'll have to rename it to jemplode20.jar)

Mike

Top
#71192 - 16/02/2002 15:35 Re: JEmplode 2.0b11 [Re: tfabris]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Incidentally, replace jemplode20.jar in your install directory for jemplode20-prerelease.jar -- you'll have to rename it to jemplode20.jar.

Top
#71193 - 17/02/2002 11:21 Re: JEmplode 2.0b11 [Re: mschrag]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31578
Loc: Seattle, WA
I just tried this version of Jemplode and the new file naming features work perfectly, exactly as advertised.

My filespec is now:
{artist} - {source} ({year}, {genre}) - {pos:2} - {title}.mp3

Which results in filenames that look like the following:
Béla Fleck and the Flecktones - Outbound (2000, Jazz) - 00 - Intro.mp3
Béla Fleck and the Flecktones - Outbound (2000, Jazz) - 01 - Hoe Down.mp3
Béla Fleck and the Flecktones - Outbound (2000, Jazz) - 02 - A Moment So Close.mp3

If need be, these can be translated into complete, fully populated tags with a simple run through Tag Studio. Perfect.

The only problem is that I forgot "position" started at zero. So the filenames are all off-by-one, but I don't really care since the only thing that's important is the order of the files, not the exact numbers.

I also noticed something interesting just now.

If you tell Jemplode to download an entire playlist, say "Yes to all", but then close the box showing the download progress, it keeps downloading in the background (closing the box doesn't cancel the download). Feature or bug? To me, it's a feature.
_________________________
Tony Fabris

Top
#71194 - 17/02/2002 13:36 Re: JEmplode 2.0b11 [Re: tfabris]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Given the choice between saying that an oddity is a feature or a bug, the programmer always says feature, right? In the spirit of that, I say it is a feature. In actuality, I never added in the capability to abort any transfers, and I forgot to turn off the close button on the progress dialog Oh well. I likely will add support for cancelling in a future release ... maybe I'll add a checkbox to enable/disable progress dialogs too. Incidentally, I noticed the zero-offset position also -- What would you expect the correct behavior to be? It's pretty easy to just add a "+ 1" in the position retriever if you think it should start at 1 instead of zero.... let me know. Mike

Top
#71195 - 17/02/2002 13:57 Re: JEmplode 2.0b11 [Re: mschrag]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31578
Loc: Seattle, WA
What would you expect the correct behavior to be?

I would expect the behavior to be as it is: If the "Position" column on the screen says zero, then if I use the "pos" variable, it should say zero as well.

However, I will say this.

In the Emplode software, the positions do start at 1 instead of at 0. Only in JEmplode do they start at 0. So the +1 might be something to consider, if only for consistency between the two products.

In Emplode, there's currently a bug where the main "playlists" list starts at 2 instead of at 1, and it might be a result of them adding a +1 in all cases. So if you notice this behavior after adding the +1 in JEmplode, you might have to work around this same bug.
_________________________
Tony Fabris

Top
#71196 - 17/02/2002 15:03 Re: JEmplode 2.0b11 [Re: tfabris]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
I'll do the +1 thing ... I think Emplode starts at 2 because they're hiding Unattached Items from you (which would typically be 1)... That would be my guess.

Mike

Top
#71197 - 17/02/2002 18:20 Re: JEmplode 2.0b11 [Re: tfabris]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
the new prerelease does the +1, just an fyi

Top
#71198 - 18/02/2002 08:17 Re: JEmplode 2.0b11 [Re: mschrag]
Roger
carpal tunnel

Registered: 18/01/2000
Posts: 5682
Loc: London, UK
Give that man a cigar. Yeah, the "Unattached Items" playlist is still in the root playlist, which causes a discontinuity in the numbering (e.g. on my player, it's actually number 3 or 4).

This is the reason that the move up/down buttons are disabled in the root playlist -- it used to crash if you pushed the playlist too far. The quick fix is to disable the buttons. When I figure out a sane fix, I'll reenable them.
_________________________
-- roger

Top
#71199 - 18/02/2002 08:56 Re: JEmplode 2.0b11 [Re: Roger]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
What do you think about just leaving Unattached Items visible? I had essentially the same problem in jEmplode and decided that it may actually be helpful in some instances to have that playlist visible so I decided to leave it. One example is that jEmplode shows modified nodes colorized Red -- when you sync to an Empeg that has database errors (aborted sync or whatever), it's really unclear what got "fixed" if something is moved to Unattached. By leaving it in, Unattached gets marked Red to show that it has "modified" (in this case, the nodes were moved to Unattached to repair the problems).

Just my two cents

Mike

Top
#71200 - 18/02/2002 10:21 Re: JEmplode 2.0b11 [Re: mschrag]
Roger
carpal tunnel

Registered: 18/01/2000
Posts: 5682
Loc: London, UK
emplode no longer moves anything to "Unattached Items", so there's not a lot of point in having it visible.
_________________________
-- roger

Top
#71201 - 18/02/2002 10:31 Re: JEmplode 2.0b11 [Re: Roger]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
Interesting .. Didn't realize that. So when you find a 0 reference count node in Emplode, is it just not considered an error anymore (i.e. you just leave it be)?

Mike

Top
#71202 - 18/02/2002 10:40 Re: JEmplode 2.0b11 [Re: mschrag]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31578
Loc: Seattle, WA
Correct. A tune with refs=0 still exists in the soup. And can still be played via a search (and in the future, via soup from the main menu).
_________________________
Tony Fabris

Top
#71203 - 18/02/2002 10:41 Re: JEmplode 2.0b11 [Re: mschrag]
Roger
carpal tunnel

Registered: 18/01/2000
Posts: 5682
Loc: London, UK
Correct. We don't worry about it.
_________________________
-- roger

Top
#71204 - 19/02/2002 10:12 Re: JEmplode 2.0b11 [Re: mschrag]
tms13
old hand

Registered: 30/07/2001
Posts: 1115
Loc: Lochcarron and Edinburgh
After getting a later jar (ConnectException at startup - thought it was due to our screwy network until I came back here...), the ISO-8859-1 characters look much better.

Haven't tried uploading any yet, but I believe in your fix. Thanks.
_________________________
Toby Speight
030103016 (80GB Mk2a, blue)
030102806 (0GB Mk2a, blue)

Top
#71205 - 20/02/2002 00:33 Re: JEmplode 2.0b11 [Re: mschrag]
ADent
stranger

Registered: 04/02/2002
Posts: 48
Loc: Denver, Colorado
The new version works with Mac OS 8.6.*

The only bug I am getting is that the genre shows up as (17) instead of 'Rock'. Shows up right on emplode in Virtual PC [but I will double check - I just udpated SoundJam (my ripper/encoder) last night too].
Unfilled in year shows up as -1 (bug or feature?)




(* I know this is the third thread I have said this, but I wanted to keep a couple of threads up to date)

Top
#71206 - 20/02/2002 00:51 Re: JEmplode 2.0b11 [Re: ADent]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
The ID3 tag parser was written by Daniel .. I'll have to talk with him about the issues with tags. The -1 thing is a known issue -- As is typical, given the option, I claim it is a feature Not sure why the Genre didn't show up properly ... It definitely works in other places.

Mike

Top
#71207 - 21/02/2002 03:30 Re: JEmplode 2.0b11 [Re: mschrag]
ADent
stranger

Registered: 04/02/2002
Posts: 48
Loc: Denver, Colorado
The tags work fine in emplode 2b11 (running Win 95 in VPC). I normally use v2.3 ID3 tags. If I use v2.2, nothing gets read in. If I use v1.1 tags all is fine.

Top
Page 1 of 2 1 2 >