
lamentos
Active Members-
Content Count
10 -
Joined
-
Last visited
About lamentos
-
Rank
Hackling
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
done just the same as with any other version Download File -
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
Is there a way to upload a file in this forum??? -
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
ok, here goes the whole class (you know you have to recompile the project and create a new jar, don't you?) -------------------------------------------------- package util; import org.blinkenlights.jid3.ID3Exception; import org.blinkenlights.jid3.MediaFile; import org.blinkenlights.jid3.MP3File; import org.blinkenlights.jid3.v2.ID3V2_3_0Tag; import org.blinkenlights.jid3.v2.APICID3V2Frame; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import java.io.*; import java.util.Arrays; import java.util.Comparator; import enums.FileType; public clas -
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
what error are you getting? -
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
yes, that's the change, it works for me -
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
the old code was for (File file : files) { if (file.getName().indexOf("access") != -1) { if (!foundBuffer) { tmpMp3File1 = file; foundBuffer = true; } else { tmpMp3File2 = file; break; } } } the new code would be for (File file : files) { try{ Long.parseLong(file.getName()); if (!foundBuffer) { tmpMp3File1 = file; foundBuffer = true; -
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
ok, it's working again, just by changing the filename test in Mp3Processor if (file.getName().indexOf("access") != -1) with try{ Long.parseLong(file.getName()); ... }catch(NumberFormatException e){} -
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
As you say, it seems to be some problem with the file names, it is searching for 'access' files when they're been called with a number (the hashcode I suppose) So let's try changing it -
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
In fact it worked yesterday, so it worked wiht the new file names. The matter is I can't recompile the source code due to this 3 classes though it doesn't seem to hard to code -
Pandora Timeshifting App: Main Discussion Thread
lamentos replied to irieb's topic in Pandora Timeshifting
Hi I've been checking the source code but it seems that classes on enum package are note complete, theyre not really a class they try to be an enum but there are many things left. Would you mind updating the source code on the zip file? tanks, PS: I'm just trying to check why I get so many "access file not found", I did it work once, but never again