Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Removing copy-protection (like DRM, AACS) (http://stream-recorder.com/forum/forumdisplay.php?f=25)
-   -  

freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF files

(http://stream-recorder.com/forum/showthread.php?t=1808)

sectroyer 09-18-2007 05:54 AM

freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF files


 
1 Attachment(s)
freeme2 - freeware open source software to remove DRM protection from Windows Media .WMA audio files and .WMV video files.

Precaution
We do not host or provide any downloads of freeme2. When downloading software from unknown sources make sure to check your downloads with a reliable antivirus software like Kaspersky Anti-Virus or Kaspersky Internet Security.

freeme2 download links
The binary application (that can be used by anybody to remove DRM protection) can be downloaded from
http://sourceforge.net/project/showf...roup_id=205801 (the latest version from official source)
http://rapidshare.com/files/57117941/FreeMe2.zip.html (older version)

The source code for programmers can be found at
http://sourceforge.net/projects/freeme2

How to use freeme2
Freeme2 is a command line application. You need to learn how to use Windows command console to run it.

How to use freeme2 to remove DRM from Windows Media .WMA and .WMV files (command line console)
  1. Put your DRM protected media files in the same folder as Freeme2.
  2. Run the Windows command console: Hit "Start"->Hit "Run..."->type CMD->Hit the "OK" button.
  3. Then, once in the command console, chage the directiry by using the "cd" command to the directory where your FreeMe2 is located.
  4. Extract your license keys. You can do this with drmdbg.
  5. Type the following in the command line console:
    Code:

    freeme2 <name_of_drm_wma_file>
    and press the Enter button
How to use freeme2 to remove DRM from Windows Media .WMA and .WMV files (drag-n-drop)
Drag-n-drop method is much easier than the one using command line console:
  1. Put your DRM protected media files in the same folder as Freeme2.
  2. Extract your license keys. You can do this with drmdbg. If you use drmdbg you can
    take the drm2-i.key file generated by drmdbg, rename it to drm2.key and copy it to the FreeMe2 folder.
  3. Drag your sample.wma file onto FreeMe2.exe. It starts up and runs fine.
The latest version of FreeMe2 supports decryption engine from MPlayer. There are three options to use freeme2: v,s and 2. Any combination of those is valid:
  • v - verbose mode
  • s - ask for SID
  • 2 - use FreeMe2 orignal decryption engine (by default we use MPlayers one).
Example configurations:
  • Decrypt file
    Code:

    FreeMe2 some_file
  • Decrypt file in verbose mode
    Code:

    FreeMe2 -v some_file
  • Decrypt file but force program to ask for sid
    Code:

    FreeMe2 -s some_file
  • Decrypt file but force program to ask for sid in verbose mode
    Code:

    FreeMe2 -vs some_file
  • Decrypt file but force program to ask for sid in verbose mode using FreeMe2 decryption engine
    Code:

    FreeMe2 -vs2 some_file
Automation tool for FreeMe2
Quote:

Originally Posted by noonehome
As far as I can tell, FreeMe2 is set up to do one file at a time. I wanted to automate it but can't "really" program. I can only do what I kind of know, and thats perl.

*This will only work if you already have drmdbg and FreeMe2 working* You will also need perl installed on your computer (get perl for Win from ActiveState - http://www.activestate.com/Products/activeperl/

Anyway, I made a perl script that if you put in a directory with your DRM'ed files will free them all using drmdbg and FreeMe2. You need to edit it to specify the location of your drmdbg folder, and your FreeMe2 folder. It will call up drmdbg (just hit multiscan and close it when its one its thing). Then it will run FreeMe2 on each DRM'ed file (using the KID and SID from drmdbg) and move the resulting freed file to a folder called "freed". It's ugly and shows off my bad programing, but it works. Just copy the code below into a file (I call mine "batch_FreeMe2.pl"). There are some messy double \\ and suchat the end of the drmdbg and FreeMe2 loactions. They need to be there, thats because of the way Win uses \ instead of the normal /.

Code:

#

$drmdbg_dir = 'C:\Program Files\drmdbg\\' ;            # Edit this to point to your drmdbg folder
$drmdbg_exe = 'drmdbg.exe' ;                            # This can be edited in case your drmdbg is named something other than drmdbg.exe
$drmdbg_ini = 'drmdbg.ini' ;
$drmdbg_run = "$drmdbg_dir$drmdbg_exe" ;

$FreeMe2_dir = 'C:\Program Files\FreeMe2\\' ;  # Edit this to point to your FreeMe2 folder
$FreeMe2_exe = 'FreeMe2.exe' ;                          # This can be edited in case your FreeMe2 is named something other than FreeMe2.exe
$FreeMe2_run = "$FreeMe2_dir$FreeMe2_exe" ;

use Cwd ;
$dir = getcwd ;
$dir =~ s/\//\\/g ;
$dir = "$dir\\" ;

if (-e "$drmdbg_dir$drmdbg_ini") {
        unlink ("$drmdbg_dir$drmdbg_ini") || die "Cannot delete $drmdbg_dir$drmdbg_ini : $!";
}

open INIFILE, ">$drmdbg_dir$drmdbg_ini" ;
select INIFILE ;
print <<INIBLOCK ;
[Form1]
State=0
Left=0
Top=0
[wmvdir]
path=$dir
[drm2dir]
path=$FreeMe2_dir
[TopWindow]
0_or_1=1

INIBLOCK
select STDOUT ;
close INIFILE ;

`"$drmdbg_run"` ;
$keyfile = 'drm2\drm2-i.key' ;
$newkeyfile = 'drm2.key' ;
rename ("$FreeMe2_dir$keyfile", "$FreeMe2_dir$newkeyfile") || die "Cannot move $FreeMe2_dir$keyfile : $!" ;

@DRM_files = <*.wma> ;                                  # if you want to work with something other than wma's, edit the <*.wma>
mkdir "freed" ;
foreach (@DRM_files){
        `\"$FreeMe2_run\" \"$_\"` ;
        rename ("freed-$_", "freed/freed-$_") ;
}

fm2helper by xdk_ - automation tool for FreeMe2
  • fm2helper (with source code)
    Simply copy the executable into the same folder as freeme2.exe. You can to drag and drop complete folders on it which are being processed recursively (i.e. with all subdirectories).

sectroyer 09-18-2007 07:41 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
I would be grateful for any help with adding wmv support and fixing some wma bugs.

sectroyer 09-20-2007 08:01 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
I have implemented basic wmv support. It is still not able to decrypt all the packets, but mplayer is able to play decrypted files. http://rapidshare.com/files/56996900/FreeMe2.zip.html

sectroyer 09-20-2007 06:45 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
http://rapidshare.com/files/57117941/FreeMe2.zip.html
It should now work with wmv files (most of them don't play in WMP use another player instead).

pork are people 09-23-2007 08:32 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Unfortunately, and no criticism meant, I fear that you are playing Henery Hawk in this episode. No matter what help Foghorn can offer, you still need to carry home a big bird...

Replacing drmdbg/drm2wmv or fairuse4wm is a labor intensive task.

I believe that any use of freeme's asf code is certifiable. Best to start with the spec - and then realize how many files violate that spec. If you remove the drm sections, you will break indexing. Either rewrite the index tables, or overwrite the drm sections with a nop tag.

You haven't internalized the complexity of extracting licenses from the new drmstore.hds database. The freeme code for getting licenses only worked for WM9! I believe fu4wm used undocumented calls into a microsoft sdk for this. drmdbg doesn't query licenses - it tries to get the media key (aka SID) from WM's memory, which is significantly more challenging under vista.

Finally, and most challenging, is the cat & rodent game of finding the gooey goodness of keybits hidden in a mutating, self-encrypted maze. The freeme proof of concept was a lesson to microsoft, as was the initial fu4wm hack (details of which may not be public yet?). The last fu4wm version and the mirakagi follow-on used a highly fragile method that involved disassembling automatic-variable initializers and brute forcing the mutation parameters (the attempts displayed in the text box).

It would delight me to see an open source solution, but the odds are stacked against you. I suspect you'll lose interest rather than seeing it through to the lawsuit and extradiction attempts. If you think I'm wrong ... you are welcome to contact me.

sectroyer 09-27-2007 01:51 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Quote:

Originally Posted by pork are people (Post 3830)
Unfortunately, and no criticism meant, I fear that you are playing Henery Hawk in this episode. No matter what help Foghorn can offer, you still need to carry home a big bird...

Replacing drmdbg/drm2wmv or fairuse4wm is a labor intensive task.

I believe that any use of freeme's asf code is certifiable. Best to start with the spec - and then realize how many files violate that spec. If you remove the drm sections, you will break indexing. Either rewrite the index tables, or overwrite the drm sections with a nop tag.

Current FreeMe2 version handles most (if not all) asf packet types.
Quote:

You haven't internalized the complexity of extracting licenses from the new drmstore.hds database. The freeme code for getting licenses only worked for WM9! I believe fu4wm used undocumented calls into a microsoft sdk for this. drmdbg doesn't query licenses - it tries to get the media key (aka SID) from WM's memory, which is significantly more challenging under vista.
Current version of FreeMe2 is able to handle drmstore.hds which isn't as "complex" as you may think.

sectroyer 09-27-2007 02:01 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Quote:

Finally, and most challenging, is the cat & rodent game of finding the gooey goodness of keybits hidden in a mutating, self-encrypted maze. The freeme proof of concept was a lesson to microsoft, as was the initial fu4wm hack (details of which may not be public yet?). The last fu4wm version and the mirakagi follow-on used a highly fragile method that involved disassembling automatic-variable initializers and brute forcing the mutation parameters (the attempts displayed in the text box).
This is the part that I haven't touched at all at the moment but I believe it can be done :) If not by me than by someone. Creating open source code is always good start for better hackers than me.
Quote:

It would delight me to see an open source solution, but the odds are stacked against you. I suspect you'll lose interest rather than seeing it through to the lawsuit and extradiction attempts. If you think I'm wrong ... you are welcome to contact me.
I am not afraid of MS :) I believe they are aware that every code I write is based on my own findings. Moreover I am not from US so I don't have to be afraid of DMCA :) Of course they can say that I use their code or something like this. I will not run away and hide from such opinions I am really willing to rewrite ANY part of FreeMe2 code if they believe it uses their pattents. Maybe openssl is theirs :D
Thanks for very interesting info. Of course I think you are wrong and I will contact you trough mail to prove it. Regards.

compn 09-29-2007 12:52 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
thanks for creating freeme2!
i remember using freeme when it came out :)

i havent had time to test your program, most of the sites i visited have switched over to flv and abandoned microsoft drm...

there is some wmv info here
http://wiki.multimedia.cx/index.php?title=WMV
feel free to add any info you want to the multimedia wiki!

qvr 09-30-2007 10:45 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Hey, when I try to run freeme2, this is what I get:

Code:

Found DRMv2 header object.
Found KID (29LjYiFtSk63aawky43gzw==)
Found DRMv1 header object.
Starting to look for license.
License file full path: C:\ProgramData\Microsoft\Windows\DRM\drmv2.lic
Couldn't allocate space for license file!

  Press <ENTER> to acknowledge error.

I'm running Vista 64. Any ideas?

sectroyer 09-30-2007 03:16 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Tell me what is the size of your drmv2.lic file. But I think this is not the problem. The real reason is that Vista has many bugs :) One of them is that it doesn't allow some files (i.e. FreeMe2) to allocate as much memory as they want :). You may try uninstalling Vista and FreeMe2 should work.

qvr 09-30-2007 08:06 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
I've scanned the directory and it says that there is no drmv2.lic file which is weird...It must be a memory issue, not sure how to change that.

I can't uninstall Vista that's not going to work unfortunately.

sectroyer 10-01-2007 02:57 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Quote:

Originally Posted by qvr (Post 3926)
I've scanned the directory and it says that there is no drmv2.lic file which is weird...It must be a memory issue, not sure how to change that.

I can't uninstall Vista that's not going to work unfortunately.

You can always uninstall vista :D It's not always easy but it is possible.

There are many sites that explain how to uninstall vista in any conditions.

I just can't understand people who use Vista... Why use system which doesn't work correctly and doesn't support most of the apps?

You may read the following thread for more
Should I use Windows Vista or uninstall it?

sectroyer 10-03-2007 04:07 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
I just wanted to inform on this forum that FreeMe2 can now be consider as beta since it is proved to work by many testers and it's even confirmed that it is able to handle some files that FU4WM isn't.

fuze 11-28-2007 09:34 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Hi guys,

I've managed to get to a point where the process starts, but it hangs on 0% when I do it the command style way. Here's my output:

C:\test>FreeMe2 "videofile.wmv"
Enter SID for this file:
2onZFmFOErCZVCvUzUlZBA8mvQVI
| | 0%
C:\test>

Very weird.
I've tried it with the drmdbg generated keyfile. I renamed it to drm2.key, put it in the videofile's directory. Then I drag the videofile on the FreeMe2 icon (which is in the same dir), then it says:

Wrong size of SID!
Press <ENTER> to acknowledge error.

(when I press enter the cmdline closes, so no error log :p)

The drm2.key file looks like this:

<DRM2WMV2>
<KID>EZV2nU0hokdJFmOgZx0p5Ftb</KID>
<SID>2onZFmFOErCZVCvUzUlZBA8mvQVI</SID>
<INFO></INFO>
</DRM2WMV2>

Can anyone help me?

Thanks!

smartsl 11-30-2007 09:28 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
I've got the same message like "Wrong size of SID!". :(

I got SID from drmdbg20071003, and my freeme2 version is FreeMe2_101307.zip

fuze 12-10-2007 03:37 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Anyone, please?

Rudolf 12-12-2007 01:47 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Mine accepts the SID but after getting to 100% gives error:

Unknown packet id - don't know what to do!

sectroyer 12-22-2007 05:23 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Quote:

Originally Posted by Stream Recorder (Post 4790)
I duno whether secroyer will be back. If freeme2 doesn't work for you, try to use drm2wmv instead.

I have some small changes to source code, so you can check if it works for you. I am planning a major rewrite but it's going to take some time :)
Regards.

sectroyer 12-24-2007 02:16 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Today I have finished testing new (mplayers code based) "engine" for decrypting files. It is now used as default in FreeMe2. Please compile the code and test it. If you will find any file that doesn't work now with FreeMe2 please upload it to rapidshare and PM link to me. Marry Christmas.

soccerdad 01-04-2008 11:03 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
You may have fixed this and are getting ready to release a version with the fix. I saw in one of the doom9 threads where on Jan 3 2008 you said you were prepping a new binary release. But just in case...

The issue mentioned here where there is no "drmv2.lic" file in the registry-specified location ("C:\ProgramData\Microsoft\Windows\DRM" on Vista) is, I believe, causing the issue mentioned over on doom9, "Couldn't allocate space for license file!".

Because the file doesn't exist, the fseek / ftell calls that figure out how much space to allocate are probably returning -1, which when viewed as an unsigned int is 2^32 (4GB). That memory allocation will obviously fail. Should probably check if the file exists before opening and seeking.

What I don't know nearly enough to answer is why an expected "drmv2.lic" file isn't in that directory. There *is* a drmv1.lic file. Don't know what that means. [EDIT] There is a "drmv1.key" file in that folder. There are *no* .lic files in there at all.

FWIW...

Donnie


Quote:

Originally Posted by sectroyer (Post 4819)
Today I have finished testing new (mplayers code based) "engine" for decrypting files. It is now used as default in FreeMe2. Please compile the code and test it. If you will find any file that doesn't work now with FreeMe2 please upload it to rapidshare and PM link to me. Marry Christmas.


gruebane 01-11-2008 07:45 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
does the freeme2 work if you do not have the license at all ?

or is that related to the error I get "This file is version 1 protected, not version 2"

thanks

Stream Recorder 01-12-2008 01:23 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Quote:

Originally Posted by gruebane (Post 4941)
does the freeme2 work if you do not have the license at all ?

Remove DRM without a license valid?

Quote:

Originally Posted by gruebane (Post 4941)
or is that related to the error I get "This file is version 1 protected, not version 2"

Remove DRM from music files with WMP protection ripped from Audio CDs

euseller 01-12-2008 02:12 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
So..i got the last freeme2 tool (v3.0), drmdbg, WM-DRM 11.0.6000.7000 and tryed to decrypt amazon unbox video...with paraments freeme2 -vs test.wmv (-vs2 not work for me - got error)


its working but video after decrypt scrolling timer in any player not work...think its bug..possible fix it?

Stream Recorder 01-12-2008 02:34 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Quote:

Originally Posted by euseller (Post 4945)
its working but video after decrypt scrolling timer in any player not work...think its bug..possible fix it?

try to make your wmv files seekable with software like freeware AsfBin GUI.

euseller 01-12-2008 02:42 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
thanx, go to try
and last..what means last - Unknown packet id - don't know what to do! Its ok or error?

SID in Hex: 416ccb2022e31d4b21aed95e1a60c2b6adf4c83f
Opened output file <test2.wmv>
Starting to process data packets
55766 packets of length 16000
Unknown packet id - don't know what to do!#########| 100%

Press <ENTER> to acknowledge error.

xxsodapopxx5 01-26-2008 06:34 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Ok i know i have never posted on this thread before, but i figured i should tell people. As of about 5 hours ago i started writing a program in c# that runs freeme2 in a batch, it will search in sub directories. I only have a little bit done, but so far its looking good. It has worked for over 100 files in batch for me, but you have to be kind of specific right now it also doesnt rename files... you know that freed thing. so i am gonna wait a little longer till i have a few working options before the first release(i also want to add integrated use of drmdbg, but right now thats not really needed cuz that program is so easy to use) sorry i got nothing now haha will be up in a week or so.

Mac2492 01-28-2008 12:27 PM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Thanks for creating freeme2. We really appreciate it. =)

bloc94 01-31-2008 08:01 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Hi I'm having a little trouble with drmdbg. I run drmdbg.exe (tried 2008.01.01 and 2007.12.25) point the WMVDIR to where my media is and leave DRMDIR on the default folder & I keep ticked MAKE DRM2 DIR and SubDirScan. When I hit multiscan, all it does it open the video in WMP and play. Am I supposed to let the video play all the way through or what? No files/folders are created containing the decrypted keys, where am i going wrong?

If I try using FreeMe2 without finding the key from drmdbg is says:

"Enter IBX Private key or hit enter
*Enter*
Decrypted content key is to big!
Enter SID for this file:"

How can I find the SID?

Cheers

Stream Recorder 01-31-2008 10:28 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Quote:

Originally Posted by bloc94 (Post 5149)
Hi I'm having a little trouble with drmdbg. I run drmdbg.exe (tried 2008.01.01 and 2007.12.25) point the WMVDIR to where my media is and leave DRMDIR on the default folder & I keep ticked MAKE DRM2 DIR and SubDirScan. When I hit multiscan, all it does it open the video in WMP and play. Am I supposed to let the video play all the way through or what? No files/folders are created containing the decrypted keys, where am i going wrong?

It seems like it was perfectly described in the following thread:
HowTo Instructions for Removing DRM with drmdbg & FreeMe2 (from Windows Media Player)

Quote:

Originally Posted by bloc94 (Post 5149)
How can I find the SID?

You need to extract the keys with drmdbg. Then you can copy the SID from the drmdbg or rename the drm2-i.key file to drm2.key and copy to the FreeMe2 folder. This has also been described in the above mentioned thread.

bloc94 01-31-2008 10:47 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
I haven't downloaded the version from the thread because sharebee.com is down for me but I am running the latest of each I believe.
I seem to be having the same problem as this guy:
http://stream-recorder.com/forum/sho...39&postcount=8

except my path is
Code:

[IndivBoxKey]
path=C:\ProgramData\Microsoft\Windows\DRM\Cache\Indiv02.key

the top box shows up my path but hitting multiscan still doesn't get the key file to appear.

I'm running vista premium also.

edit: why does it put a space between 'in' and 'div02' on the forum?

Stream Recorder 02-01-2008 12:38 AM

Re: freeme2 - free software to remove DRM protection from Windows Media .WMA audio fi


 
Quote:

Originally Posted by bloc94 (Post 5152)
I seem to be having the same problem as this guy:
http://stream-recorder.com/forum/sho...39&postcount=8

except my path is
Code:

[IndivBoxKey]
path=C:\ProgramData\Microsoft\Windows\DRM\Cache\Indiv02.key

the top box shows up my path but hitting multiscan still doesn't get the key file to appear.

I'm running vista premium also.

Do you use Yahoo! Music Unlimited too?

Do you have use multiple music download/subscription services? There was a thread about inability to use lossless DRM removal software when using both Ruckus and Yahoo! Music Unlimited.

bloc94 02-01-2008 08:41 PM

Re:freeme2-free software to remove DRM protection from Windows Media WMA,WMV,ASF file


 
Nope, I'm using BBC iPlayer.
I've just realised that the title of this thread is about music... will it not work with video files? Oops.

Stream Recorder 02-01-2008 09:27 PM

Re: freeme2-free software to remove DRM protection from Windows Media WMA,WMV,ASF fil


 
Quote:

Originally Posted by bloc94 (Post 5173)
Nope, I'm using BBC iPlayer.
I've just realised that the title of this thread is about music... will it not work with video files? Oops.

freeme2 started as a project for removing DRM from WMA files. Then DRM removal from WMV files was added. Then the engine of MPlayer started being used in freeme2. It is all in the beginning of the thread.

BBC iPlayer offers Windows Media DRM protected content, so you can try freeme2 or FairUse4WM.

The problem might be caused by the following: you either use at least two services that offer DRM protected content or lossless DRM removal software just doesn't work well on Windows Vista.

Please note: You should only remove DRM protection from legally purchased files. Please do not abuse rental licenses.

Valfrid 02-08-2008 08:20 AM

Re: freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF f


 
I know I posted this in another thread but this one seems more likely!!

I'm using freeme2 but the best results I got are these below and it didn't work at all!

D:\Utils\DRM Removal Kit\FreeMe2>freeme2 -v filme.wmv
Found DRMv2 header object.
Found KID (DoFKmiMtg0qGB23/CsCMJQ==)
Found DRMv1 header object.
Starting to look for license.
License file full path: C:\Documents and Settings\All Users\DRM\drmstore.hds
Checking license with PUBKEY 7d23fd3aa52b6c1c246f99d19fb72dd66bf852df
Enter IBX private key or hit enter:
Indiv01.key
Content key: 05 ca 1d 1a ae ea
<SID>8lcOChMlV/0yucMcp+G8xW86u4Q=</SID>
SID in Hex: f2570e0a132557fd32b9c31ca7e1bcc56f3abb84
Opened output file <Freed-filme.wmv>
Starting to process data packets
89860 packets of length 16000
Unknown packet id - don't know what to do!#########| 100%

Press <ENTER> to acknowledge error.


D:\Utils\DRM Removal Kit\FreeMe2>freeme2 -vs filme.wmv
Found DRMv2 header object.
Found KID (DoFKmiMtg0qGB23/CsCMJQ==)
Found DRMv1 header object.
Starting to look for license.
Enter SID for this file:
8lcOChMlV/0yucMcp+G8xW86u4Q=
<SID>8lcOChMlV/0yucMcp+G8xW86u4Q=</SID>
SID in Hex: f2570e0a132557fd32b9c31ca7e1bcc56f3abb84
Opened output file <Freed-filme.wmv>
Starting to process data packets
89860 packets of length 16000
Unknown packet id - don't know what to do!#########| 100%

Press <ENTER> to acknowledge error.

Stream Recorder 02-08-2008 10:45 AM

Re: freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF f


 
Quote:

Originally Posted by Valfrid (Post 5250)
Unknown packet id - don't know what to do!#########| 100%

Press <ENTER> to acknowledge error.

freeme2: "Unknown packet id" error

sectroyer 02-08-2008 10:57 AM

Re: freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF f


 
Issue should be fixed in 0.4 :)

Valfrid 02-08-2008 07:55 PM

Re: freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF f


 
I managed to downgrade my license to 11.0.57xx.xxxx and so I was able to unprotect the file using FairUse4WM.

I already got the last version from today (08-Feb-2008) of freeme2 but my problem was really with drmdbg!

Thanks guys!

renegademaster 02-27-2008 04:18 PM

Re: freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF f


 
I have a problem. I have an .asf video stream file recorded with DRM v11.0.6000.7000 and upon reading a few posts in these forums, I found the correct versions of drmbg and freeme2 and figured out how to use them. then my drmbg found the SID. This is what happens. It automatically finds the DRM key itself when I start the program. When I click on Multi Scan button, windows media player opens, and the program finds the SID, but WMP can not play the file, freezes and restarts itself..

Anyway, I have the SID already.. So I go to Freeme2 and it frees the file into a new Freedwhatever.asf

But this new free .asf file is extremely corrupt that you can't watch it.

How do I solve this? I have Vista Home Basic (or Premium, not quite sure) SP2

Stream Recorder 02-27-2008 11:44 PM

Re: freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF f


 
Quote:

Originally Posted by renegademaster (Post 5438)
Anyway, I have the SID already.. So I go to Freeme2 and it frees the file into a new Freedwhatever.asf

But this new free .asf file is extremely corrupt that you can't watch it.

You can try to to fix broken wmv file (or just make it seekable). You can also try to use drm2wmv instead of freeme2

maciejr 03-12-2008 04:23 AM

Re: freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF f


 
I have Windows XP with Windows Media Player 11 (11.0.5705.5043)
and WMV video file (od11.wmv) with DRM license.
I can play this file.
I would like to remove the DRM from this file.

I have downloaded drmdbg from http://www.sendspace.com/file/67h67o
suggested on http://stream-recorder.com/forum/dow...59.html?t=1959

I have opened drmdbg like on http://www.maciejrek.republika.pl
and click on the MultiScan button.
Then automatically opened the Windows Media Player and video file played.
I have downloaded FreeMe2 from http://sourceforge.net/project/showf...roup_id=205801
suggested on http://undrm.info/remove-DRM-protect...-WMA-files.htm
I opened the CMD like on http://www.maciejrek.republika.pl/

and where does "IBX private key" come from?

Regards
Maciej


All times are GMT -6. The time now is 11:44 PM.