Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
freeme2 - free software to remove DRM protection from Windows Media WMA,WMV,ASF filesfreeme2 - 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)
Drag-n-drop method is much easier than the one using command line console:
Quote:
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-$_") ; }
|
Thread Tools | |
Display Modes | |
|
|