Quantcast
Channel: ReScene - new forum posts
Viewing all 480 articles
Browse latest View live

Can't Reconstruct Rar files

$
0
0

I'm trying to Reconstruct Rar files but it's showing error and only creates one file of 64 bytes. here the log:
srrGUI: Process running, please wait…
Traceback (most recent call last):
File "E:\pyReScene\rescene\srr.py", line 566, in main
File "E:\pyReScene\rescene\srr.py", line 307, in manage_srr
File "E:\pyReScene\rescene\main.py", line 1301, in reconstruct
File "E:\pyReScene\rescene\main.py", line 1690, in get_rar_data_object
File "E:\pyReScene\rescene\main.py", line 1976, in compressed_rar_file_factory
File "E:\pyReScene\rescene\main.py", line 2101, in init
File "E:\pyReScene\rescene\main.py", line 2230, in search_matching_rar_executable
File "E:\pyReScene\rescene\main.py", line 2725, in custom_popen
File "c:\Python34\lib\subprocess.py", line 859, in init
File "c:\Python34\lib\subprocess.py", line 1112, in _execute_child
OSError: [WinError 216] This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information to see whether you need a x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher
SRR file created with pyReScene Auto 0.5.
Re-creating stored file: fan-msbs.nfo
Re-creating stored file: fan-msbs.sfv
Re-creating RAR file: fan-msbs.rar
Trying to rebuild compressed file fan-msbs.iso.
Grabbing large enough data piece size for testing.


srrGUI: Process completed. srr.exe exit code = 255


[END OF LOG]
I've never tried ReScene before. any help would be really appreciated. Thanks in advance.


Forum category: General discussion / ReScene
Forum thread: Can't Reconstruct Rar files

Re: Can't Reconstruct Rar files

Re: WinRAR pack (2.00 - 5.40)

$
0
0

While such packs are useful for many users, there are drawbacks:

  • It is in violation of the WinRAR license to distribute only parts of the WinRAR installers;
  • The user is not able to tell if the exe files from these packs are tampered with. WinRAR verifies the signature when extracting files from the installers.

Forum category: General discussion / ReScene
Forum thread: WinRAR pack (2.00 - 5.40)

Article 0

Wrong labels for release group rG

$
0
0

"iso-rg" are tagged as games.

this seems to be an I_KnoW release
1944.Bitva.V.Ardenach.AClone.NFO.Fix.CZECH-rG

Maybe it's possible to add some more validation between release name and release files?
Releases usually have an nfo file which also includes the release groups name (at least for games),
something like this may proof useful in finding bad releases.

 def check_release(name, nfo_name): for s in '-_.': r = name.rfind(s) if r >= 0: return re.search(name[r+1:] + r'\.nfo$', nfo_name, re.IGNORECASE) >>> check_release('1944.Bitva.V.Ardenach.AClone.NFO.Fix.CZECH-rG', 'i_know.nfo') >>> check_release('ABBYY.FineReader.v9.0.0.724.Professional.Edition.Multilanguage-rG', 'rg.nfo') <_sre.SRE_Match object; span=(0, 6), match='rg.nfo'> >>> check_release('2_Live_Crew-2_Live_Crew_Greatest_Hits-1992-RGN', '00-2_live_crew-2_live_crew_greatest_hits-1992-RGN.nfo') <_sre.SRE_Match object; span=(46, 53), match='RGN.nfo'> 

Forum category: General discussion / Other
Forum thread: Wrong labels for release group rG

Re: Wrong labels for release group rG

Re: Wrong labels for release group rG

Article 0


Article 1

Article 0

Article 1

$
0
0

A few things I noticed that could speed up the process

  • try most common mt switches first e.g. 1,2,4,6,8,12,16,24,32 (odd switches are rarely used if at all)
  • when using method2 do not try mt switches smaller than the biggest one found with the default method, they won't work anyway
  • a release with multiple files sometimes fails (bad parts) with method2 even if it uses the correct mt switch if it used other mt switches before, possibly a remnant (rar parts?) from previous mt switches, forcing the mt switch will work
  • after a working rar version was found do not try another version, this happens with releases that have multiple files and need method2 to work, try method2 before switching to another rar version

Also sometimes when a release has multiple files the rar detection finds a higher mt switch for a file but it's not possible to force it because it is not detected as good initially.


Forum category: General discussion / ReScene
Forum thread: ReScene usability improvement for compressed archives

Call.of.Duty.Black.Ops.III.Zombie.Chronicles.German-0x0007

$
0
0

This release is 108 GiB
python 2.7 RAR 5.40 64-bit windows 7 mt 8

The method is_rar only allows up to .v99, sometimes this is not enough, it should at least go up to .z99 (possibly more).
I had an archive fail with .|## because of the invalid filename but I don't recall the release name now.

Changing the regex to ".*\.(rar|[r-z]\d{2}|\d{3})$" gets around this

 Creating archive K:\tmp\pyReScene\SRR-yeykqu\pyReScene_compressed.y58 ... de-codbo3zomchro.iso OK Calculating the checksum Traceback (most recent call last): File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\srr.py", line 602, in main parser.exit(manage_srr(options, infolder, infiles, working_dir)) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\srr.py", line 316, in manage_srr options.volume is None, options.volume, rar_mt) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 1318, in reconstruct in_folder, hints, auto_locate_renamed) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 1707, in get_rar_data_object auto_locate_renamed)) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 2019, in compressed_rar_file_factory nblock, followup_src, solid=False) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 2202, in __init__ self.rarstream = RarStream(out, compressed=True) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\rarstream.py", line 8 2, in __init__ rar_file = utility.next_archive(rar_file, is_old) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\utility.py", line 265 , in next_archive raise AttributeError("The extension must be one form a RAR archive.") AttributeError: The extension must be one form a RAR archive. Unexpected Error: The extension must be one form a RAR archive. 

But then this happens

 Re-creating RAR file: de-codbo3zomchro.u10 Traceback (most recent call last): File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\srr.py", line 602, in main File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\srr.py", line 316, in manage_srr File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 1342, in reconstruct File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 1503, in _repack File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 2546, in read File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\rarstream.py", line 2 32, in read IOError: [Errno 24] Too many open files: u'K:\\tmp\\pyReScene\\SRR-b1nxpz\\pyReS cene_compressed.w07' Unexpected Error: [Errno 24] Too many open files: u'K:\\tmp\\pyReScene\\SRR-b1nx pz\\pyReScene_compressed.w07' 

After installing win32file and adding this at the beginning of main.py it finally worked.
Linux needs a different way to handle this, more info > stackoverflow_com/questions/6774724/why-python-has-limit-for-count-of-file-handles
While this may work it would be better to just close the files which are no longer needed.

 # allow more open files if win32file is installed try: import win32file win32file._setmaxstdio(2048) except ImportError: pass 

Forum category: General discussion / ReScene
Forum thread: Call.of.Duty.Black.Ops.III.Zombie.Chronicles.German-0x0007

Reconstruction of RAR with custom headers.

$
0
0

Hi, everyone

I'm having problems with reconstruction of the release Last.Will. Episode.3-HI2U. It has a custom RAR header.
I have extracted various RAR versions, from 2.00 to the latest 5.40, including beta versions. And srr reports No good RAR version found after trying all.
Does the srr.exe have a special switch that needs to be applied for reconstruction of RAR with custom header??


Forum category: General discussion / ReScene
Forum thread: Reconstruction of RAR with custom headers.

Jamsouls-WaLMaRT

$
0
0

Jamsouls-WaLMaRT fails because of jmsls-wmt.rar/jamsouls.cue
removing this file from the srr manually fixed the problem for me.

 Traceback (most recent call last): File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\srr.py", line 602, in main parser.exit(manage_srr(options, infolder, infiles, working_dir)) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\srr.py", line 316, in manage_srr options.volume is None, options.volume, rar_mt) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 1269, in reconstruct rarfs = open(ofile, "w+b") IOError: [Errno 13] Permission denied: u'out\\Jamsouls-WaLMaRT\\jmsls-wmt.rar' Unexpected Error: [Errno 13] Permission denied: u'out\\Jamsouls-WaLMaRT\\jmsls-w mt.rar'SRR file created with pyReScene Auto 0.5. Re-creating stored file: jmsls-wmt.rar/jamsouls.cue Re-creating stored file: jamsouls-walmart.nfo Re-creating stored file: jmsls-wmt.sfv Re-creating RAR file: jmsls-wmt.rar 

Forum category: General discussion / ReScene
Forum thread: Jamsouls-WaLMaRT

Article 0

$
0
0

If No guarantees for compressed RARs, what's the point of creating the srr file?? They cannot be used to restore the original release RAR.

After all, many releases' original RAR have compression method used. I have tried 5 releases with compression used and they all failed to reconstruct.

Hopefully the issue should be resolved soon.


Forum category: General discussion / ReScene
Forum thread: [README] Unable to reconstruct

Article 0

$
0
0

A lot of releases do work especially releases with only a single file, usually iso images.
I have successfully reconstructed a few hundred releases but I also have a lot which do not work.
Sometimes you need to take special steps to succeed e.g. only have one specific rar version in your rar directory or force a specific mt switch and always verify the crc of the reconstructed rar files as there can be bad parts.

Maybe a list of releases which do not work could be made on the wiki.


Forum category: General discussion / ReScene
Forum thread: [README] Unable to reconstruct

Baldurs.Gate.Siege.of.Dragonspear.Update.v2.3-BAT

$
0
0

Too many part files are created which causes invalid filenames.

 Creating archive K:\tmp\pyReScene\SRR-3zgv5h\pyReScene_compressed.{99 ... setup-1.bin Calculating the checksum Cannot create K:\tmp\pyReScene\SRR-3zgv5h\pyReScene_compressed.|00 Die Syntax fur den Dateinamen, Verzeichnisnamen oder die Datentragerbezeichnung ist falsch. Create next volume ? [Y]es, [N]o, [A]ll Program aborted Traceback (most recent call last): File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\srr.py", line 602, in main Something went wrong executing Rar.exe: Create file error parser.exit(manage_srr(options, infolder, infiles, working_dir)) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\srr.py", line 316, in manage_srr options.volume is None, options.volume, rar_mt) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 1325, in reconstruct in_folder, hints, auto_locate_renamed) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 1714, in get_rar_data_object auto_locate_renamed)) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 2026, in compressed_rar_file_factory nblock, followup_src, solid=False) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 2151, in __init__ first_block, blocks, thread_count) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 2421, in search_matching_rar_executable if try_rar_executable(rar, args, old): File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\main.py", line 2329, in try_rar_executable with RarStream(out, compressed=True, packed_file_name=pfn) as rs: File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\rarstream.py", line 8 2, in __init__ rar_file = utility.next_archive(rar_file, is_old) File "D:\pyReScene-HG\Gfy-pyrescene-4d4bcce5ed8a\rescene\utility.py", line 265 , in next_archive raise AttributeError("The extension must be one form a RAR archive.") AttributeError: The extension must be one form a RAR archive. Unexpected Error: The extension must be one form a RAR archive. 

Forum category: General discussion / ReScene
Forum thread: Baldurs.Gate.Siege.of.Dragonspear.Update.v2.3-BAT

Tomb_Raider_4_The_Last_Revelation-FLT, repack?

Article 0

Al.Emmo.and.the.Lost.Dutchmans.Mine-RELOADED

$
0
0

Reconstruction failed for this release, using the latest development version pyrescene-312781f4c38f,
no good RAR version found, both in method 1 and 2, below is the log:

E:\alemmo-reloaded>python D:\aaa\Gfy-pyrescene-312781f4c38f\bin\srr.py E:\alemmo
-reloaded\Al.Emmo.and.the.Lost.Dutchmans.Mine-RELOADED.srr —mt-set=2 -t temp -z
d:\aaa\bbb\RAR -y
SRR file created with pyReScene Auto 0.4.
Re-creating stored file: reloaded.nfo
Re-creating stored file: rld-aeldm.sfv
Re-creating RAR file: rld-aeldm.rar
Trying to rebuild compressed file rld-aeldm.bin.
Grabbing large enough data piece size for testing.
Trying 2012-01-09 4.10.
Trying 2006-08-05 3.60.
Trying 2004-09-08 3.40.
Trying 2004-01-22 3.30.
Trying 2003-05-15 3.20.
Trying 2002-05-14 3.00.
Trying 2002-01-18 3.00.
Trying 2001-09-07 2.90.
Trying 2000-05-11 2.70.
Trying 2000-02-23 2.70.
Trying 1999-10-21 2.60.
Trying 1999-09-29 2.60.
Trying 1999-09-21 2.60.
Trying 1999-08-23 2.60.
Trying 1999-01-15 2.50.
Trying 1997-09-16 2.02.
Trying 2012-06-09 4.20.
Trying 2013-08-22 5.00.
Trying 2013-12-01 5.01.
Trying 2014-06-10 5.10.
Trying 2014-08-27 5.11.
Trying 2014-08-27 5.11.
Trying 2014-12-02 5.20.
Trying 2015-01-30 5.21.
Trying 2015-02-13 5.21.
Trying 2015-02-15 5.21.
Trying 2015-07-30 5.30.
Trying 2015-08-23 5.30.
Trying 2015-09-10 5.30.
Trying 2015-10-07 5.30.
Trying 2015-10-26 5.30.
Trying 2015-11-14 5.30.
Trying 2015-11-18 5.30.
Trying 2016-02-04 5.31.
Trying 2016-02-04 5.31.
Trying 2016-08-15 5.40.
Grabbing large enough data piece size for testing.
Trying 2012-01-09 4.10.
Trying 2006-08-05 3.60.
Trying 2004-09-08 3.40.
Trying 2004-01-22 3.30.
Trying 2003-05-15 3.20.
Trying 2002-05-14 3.00.
Trying 2002-01-18 3.00.
Trying 2001-09-07 2.90.
Trying 2000-05-11 2.70.
Trying 2000-02-23 2.70.
Trying 1999-10-21 2.60.
Trying 1999-09-29 2.60.
Trying 1999-09-21 2.60.
Trying 1999-08-23 2.60.
Trying 1999-01-15 2.50.
Trying 1997-09-16 2.02.
Trying 2012-06-09 4.20.
Trying 2013-08-22 5.00.
Trying 2013-12-01 5.01.
Trying 2014-06-10 5.10.
Trying 2014-08-27 5.11.
Trying 2014-08-27 5.11.
Trying 2014-12-02 5.20.
Trying 2015-01-30 5.21.
Trying 2015-02-13 5.21.
Trying 2015-02-15 5.21.
Trying 2015-07-30 5.30.
Trying 2015-08-23 5.30.
Trying 2015-09-10 5.30.
Trying 2015-10-07 5.30.
Trying 2015-10-26 5.30.
Trying 2015-11-14 5.30.
Trying 2015-11-18 5.30.
Trying 2016-02-04 5.31.
Trying 2016-02-04 5.31.
Trying 2016-08-15 5.40.
Failure to remove temp dir: temp\SRR-jw9ory
No good RAR version found.
No good RAR version found.


Forum category: General discussion / ReScene
Forum thread: Al.Emmo.and.the.Lost.Dutchmans.Mine-RELOADED
Viewing all 480 articles
Browse latest View live