Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Other discussions > Removing DRM protection from eBooks
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 04-16-2010, 11:38 PM
Stream Recorder
 
Posts: n/a
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


Quote:
Originally Posted by johnr267 View Post
Sorry for that, OK I followed the steps above up to Point 10, where I just couldn't get the terminal input correct and kept getting an error message "ereader2html is not recognized as an internal or external command, operable program or batch file". I've then played around with the other inputs and got the same message.

Overall my input was as follows (details changed of course):
ereader2html good life.pdb outdir "john dow" 123456789012345

Not sure if this is correct - ie have I put spaces where I should, or inadvertently excluded spaces etc.
Make sure it has the .py file extension. Then try to launch it like this:
Code:
ereader2html.py good life.pdb outdir "john dow" 123456789012345
Reply With Quote
  #2  
Old 04-29-2010, 02:49 PM
spunky spunky is offline
Junior Member
 
Join Date: Jan 2010
Posts: 2
spunky is on a distinguished road
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


Not sure if this helps put I was told to put in only the last 8 digits of my credit card and it worked.
Reply With Quote
  #3  
Old 05-05-2010, 05:20 PM
CCUC CCUC is offline
Junior Member
 
Join Date: May 2010
Posts: 4
CCUC is on a distinguished road
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


I have the same problem. Any tips?
Reply With Quote
  #4  
Old 10-09-2011, 05:03 AM
kcl34 kcl34 is offline
Junior Member
 
Join Date: Oct 2011
Posts: 1
kcl34 is on a distinguished road
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


Hi Johnr267, can you please help me remove DRM from a pdb ebook for me? thanks
kcl
Reply With Quote
  #5  
Old 12-11-2010, 11:02 PM
55kevy 55kevy is offline
Junior Member
 
Join Date: Dec 2010
Posts: 3
55kevy is on a distinguished road
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


I have downloaded erdr2pml.py, downloaded and installed python, and from the command prompt set at the directory where the .pdb I want to convert and the erdr2pml.py are located I enter:

c:\users\me\my docs\my ebooks\dir erdr2pml.py samedir\book.pdb samedir "My Name" mycreditcardnumber

And get a nice message that erdr2pml is from Dark Reverser and is to convert .pdb to .pml and the syntax and that you only have to enter the last 8 digits of cc number. But there is no conversion. I've tried this without the full directory path in front of the book file and get the same message. Should the erdr2pml.py file be stored in the same directory as the python? or what else am i doing wrong?
Reply With Quote
  #6  
Old 12-12-2010, 04:47 AM
Stream Recorder
 
Posts: n/a
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


Quote:
Originally Posted by 55kevy View Post
I have downloaded erdr2pml.py, downloaded and installed python, and from the command prompt set at the directory where the .pdb I want to convert and the erdr2pml.py are located I enter:

c:\users\me\my docs\my ebooks\dir erdr2pml.py samedir\book.pdb samedir "My Name" mycreditcardnumber

And get a nice message that erdr2pml is from Dark Reverser and is to convert .pdb to .pml and the syntax and that you only have to enter the last 8 digits of cc number. But there is no conversion. I've tried this without the full directory path in front of the book file and get the same message. Should the erdr2pml.py file be stored in the same directory as the python? or what else am i doing wrong?
Try to place erdr2pml.py and your book.pdb into the same directory. And use simple names for your ebooks and directories (without spaces, special characters,...) Then it should work as described in the post above:
Code:
erdr2pml.py book.pdb samedir "Name" CCN
or just
Code:
erdr2pml.py book.pdb "Name" CCN
Reply With Quote
  #7  
Old 12-13-2010, 04:12 AM
55kevy 55kevy is offline
Junior Member
 
Join Date: Dec 2010
Posts: 3
55kevy is on a distinguished road
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


That is what I have done. Both the .py and the .pdb files are in the same directory, I'm running the command prompt set at the same directory, and I'm setting outdir as the same directory. So what now?
Reply With Quote
  #8  
Old 12-13-2010, 04:27 AM
55kevy 55kevy is offline
Junior Member
 
Join Date: Dec 2010
Posts: 3
55kevy is on a distinguished road
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


OK - tried it one last time: command prompt set at directory where erdr2pml.py and book.pdb are and used the syntax:
Code:
erdr2pml.py book.pdb "my name" ccn
And it worked! So now I just have to tackle the other 300 titles.
Reply With Quote
  #9  
Old 12-13-2010, 09:10 AM
Stream Recorder
 
Posts: n/a
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


Quote:
Originally Posted by 55kevy View Post
Code:
erdr2pml.py book.pdb "my name" ccn
And it worked! So now I just have to tackle the other 300 titles.
Then it is a good idea to create a batch file for that. I'm not an expert in that, but the following should work:

Code:
for %f IN (*.pdb) do call erdr2pml.py %f "name" ccn
or something like that:
Code:
for /f %%a IN ('dir /b *.pdb') do call erdr2pml.py %%a "name" ccn
The /f flag is used to return filenames (not directories).
"dir /b *.pdb" returns a bare directory listing (no filesize, attributes, etc.) with filenames that match the *.pdb pattern.
"%%a" is our variable.
Reply With Quote
  #10  
Old 02-17-2011, 09:18 AM
stehr stehr is offline
Junior Member
 
Join Date: Feb 2011
Posts: 1
stehr is on a distinguished road
Default

Re: Remove DRM from PDB ebook from B&N (Barnes & Noble),...


I'm having trouble with this. When I enter:
erdr2pml.py a.pdb "My name" CCN
I receive the error:
File "<stdin>", line 1
SyntaxError: invalid syntax (highlighting the name of the book 'a')

I've tried renaming the files as numbers or all lowercase letters, but to no avail. What am I missing?

Thanks!
Reply With Quote
Reply Post New Thread
Tags: , , , , , , , , , , , , , ,



Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 09:23 PM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons