├── .gitignore ├── AUTHORS ├── COPYING ├── MANIFEST.in ├── NEWS ├── README ├── TODO ├── alltests.py ├── awescript └── awescript.py ├── bin ├── _preamble.py ├── linux │ ├── pysrr.sh │ └── pysrs.sh ├── preprardir.py ├── py2exe │ ├── README.txt │ ├── auto.bat │ ├── shell_extension-setup.bat │ └── shell_extension-srrit.bat ├── pyrescene.py ├── retag.py ├── srr.py ├── srr_extract_srs.py ├── srr_merge.py ├── srr_sort.py ├── srs.py ├── srs_bad.py ├── srs_batch.py ├── srs_size.py └── windows │ ├── add_current_dir_to_path.bat │ ├── ashellextension_setup.bat │ ├── ashellextension_srrit.bat │ ├── best.bat │ ├── preprardir.bat │ ├── pyrescene.bat │ ├── pysrr.bat │ ├── pysrs.bat │ ├── rerar.bat │ ├── retag.bat │ ├── srr_extract.bat │ ├── srr_extract_srs.bat │ ├── srr_merge.bat │ ├── srr_sort.bat │ ├── srs_bad.bat │ ├── srs_size.bat │ └── vs.bat ├── dev-docs ├── archive │ ├── Info-ZIP.appnote.20040528.txt │ ├── ZIP.Appnote.PKWARE.6.3.2.txt │ ├── ace.doc │ ├── arj.txt │ ├── crc_v3.txt │ ├── udf102.pdf │ └── udf260.pdf ├── audio │ ├── FLAC - format.mht │ ├── MP3 File Format Specification.mht │ ├── MP3 File Structure Description.mht │ ├── MPEG AUDIO FRAME HEADER.mht │ ├── Pairwise_Boosted_Audio_Fingerprint.pdf │ ├── ThumbnailingMM05.pdf │ └── cvpr2005-mr.pdf ├── code │ ├── DeleteWMPTagsFromMP4.cs │ ├── NeWbY-fix_music.txt │ ├── alpine_docker_pyrescene-harrox.txt │ ├── eW7bVNdv_acm3-drag-n-drop.txt │ ├── recreate.bat.txt │ ├── scenesort.sh │ ├── script_AfroNinja.txt │ ├── srr-srs_creation_script.txt │ ├── srr_srrdb.sh │ ├── srr_srs_all.bat.txt │ ├── srr_srs_all_ex.bat.txt │ ├── srr_srs_folder.bat.txt │ ├── wormdrink │ │ ├── auto-srr │ │ ├── invoke.txt │ │ └── utils.lib.sh │ ├── wrC2Gcms.txt │ ├── yopom_CHKsrs.0.4.4.2.bat │ ├── yopom_chksrs.bat.txt │ ├── yopom_chksrs2.bat.txt │ ├── yopom_crccheck.bat.txt │ ├── yopom_rr.c │ └── yopom_runSRS.V.0.4.3.bat ├── extlibs │ ├── rar_SSokolow.py │ ├── rar_hachoir.py │ └── rarfile.py ├── pyrescene │ └── reconstructed.avi.with.wrong.disk │ │ ├── battlestar.galactica.2003.ws.dvdrip.xvid-sfm.sample_fails.srs │ │ ├── battlestar.galactica.2003.ws.dvdrip.xvid-sfm.sample_succeeds.srs │ │ └── info.txt ├── rar │ ├── RAR202.txt.nfo │ ├── TechNote3.00.txt │ ├── TechNote4.00.txt │ ├── Winrar_irl.png │ ├── history3.70-3.93.txt │ ├── history3.80-4.00.txt │ ├── history3.80-4.00b7.txt │ ├── rar_faq.zip │ ├── rarfile-2.2.tar.gz │ ├── rarfile-2.3.tar.gz │ ├── unrar.png │ ├── users_manual2.00.txt │ ├── users_manual3.00.txt │ └── users_manual4.00.txt ├── requests.txt ├── rescene .NET │ ├── gomtuu_fix.txt │ ├── gomtuu_umlaut.txt │ ├── srr.1.2.cs │ │ ├── ArgParser.cs │ │ ├── Crc32.cs │ │ ├── RarBlocks.cs │ │ ├── RarFileNameComparer.cs │ │ ├── RarFileNameFinder.cs │ │ ├── RarReader.cs │ │ ├── RarStream.cs │ │ ├── SfvReader.cs │ │ ├── license.txt │ │ └── srr.cs │ ├── srs-1.2-decoded_source.rar │ ├── srs-1.3-decoded_source.rar │ └── srs.1.2.cs │ │ ├── AVI │ │ ├── AviReSample.cs │ │ └── RiffReader.cs │ │ ├── ByteArrayComparer.cs │ │ ├── MKV │ │ ├── EbmlReader.cs │ │ └── MkvReSample.cs │ │ ├── SampleAttachmentInfo.cs │ │ ├── SampleFileInfo.cs │ │ ├── SampleTrackInfo.cs │ │ ├── license.txt │ │ └── srs.cs ├── srr_spec.txt ├── video │ ├── FileFormats.rar │ ├── asf │ │ ├── ASF_Specification.pdf │ │ ├── US6041345.pdf │ │ ├── asf-1.0.htm │ │ └── draft-fleischman-asf-00.txt │ ├── avi.pdf │ ├── containers.pdf │ ├── m2ts │ │ ├── 2b_bdrom_audiovisualapplication_0305-12955-15269.pdf │ │ ├── bdj_gem_application_definition-15496.pdf │ │ └── mpeg2ts.pdf │ ├── matroska.pdf │ ├── matroska │ │ ├── Cluster.png │ │ ├── Cues.png │ │ ├── MatroskaParser.pm │ │ ├── Seekhead.png │ │ ├── SegmentInfo.png │ │ ├── Tags.png │ │ ├── Tags2.png │ │ ├── chapters.png │ │ ├── ebml.png │ │ ├── matroska.tex │ │ ├── matroska_header_striping.png │ │ ├── matroska_l0.png │ │ └── matroska_segment.png │ ├── mp4 │ │ ├── ISO_14496-14_MP4.pdf │ │ ├── QuickTime container - MultimediaWiki.mht │ │ ├── Thompson's Technological Insight_ MP4 File Format Part 1.mht │ │ ├── Thompson's Technological Insight_ MP4 File Format Part 2.mht │ │ ├── c041828_ISO_IEC_14496-12_2005(E).zip │ │ ├── c051533_ISO_IEC_14496-12_2008.zip │ │ ├── info_isoiec14496-14%7Bed1.0%7Den_preview.pdf │ │ ├── isoviewer-2.0-RC-15.jar │ │ ├── mp4-layout.txt │ │ └── qtff-2001.pdf │ ├── odmlff2.pdf │ └── riff │ │ ├── Extended AVI structure checker │ │ ├── cap01.txt │ │ ├── info.txt │ │ └── rifflist.zip │ │ ├── Multimedia Programming Interface and Data Specifications 1.0.mht │ │ ├── RIFF File Structure.mht │ │ ├── RiffMP3 │ │ ├── Studio Dust MP3 RIFF Header Generator.mht │ │ ├── riffmp3_bsdi.tar.gz │ │ ├── riffmp3_linux.tar.gz │ │ ├── riffmp3_linux_elf.tar.gz │ │ ├── riffmp3_msdos.zip │ │ ├── riffmp3_osx_intel.tar.gz │ │ ├── riffmp3_osx_ppc.tar.gz │ │ ├── riffmp3_solaris_sparc.tar.gz │ │ ├── riffmp3_solaris_x86.tar.gz │ │ └── riffmp3_sunos.tar.gz │ │ ├── avi.txt │ │ ├── mpidata.txt │ │ └── riff.zip └── webpages │ ├── FiReScene - faqs.mht │ ├── FiReScene - software.mht │ └── srrDB.mht ├── images ├── icon.ico ├── icon128x128.png ├── icon16x16.png └── icon32x32.png ├── rerar ├── rar.py ├── rarfile.py └── rerar.py ├── resample ├── __init__.py ├── asf.py ├── ebml.py ├── flac.py ├── fpcalc.py ├── m2ts.py ├── main.py ├── mov.py ├── mp3.py ├── riff.py ├── srs.py ├── stream.py └── test │ ├── __init__.py │ ├── test_ebml.py │ ├── test_main.py │ └── test_mp3.py ├── rescene ├── __init__.py ├── crc32combine.py ├── main.py ├── ordereddict.py ├── osohash.py ├── rar.py ├── rarstream.py ├── srr.py ├── test │ ├── __init__.py │ ├── test_main.py │ ├── test_osohash.py │ ├── test_rar.py │ ├── test_rarstream.py │ └── test_utility.py ├── unrar.py └── utility.py ├── scripts ├── bitflip.py ├── count_groups.py ├── experiments │ ├── bruteforce_time.py │ ├── check_image.py │ ├── compr.py │ ├── createrar.py │ ├── del_nfos.py │ ├── delete_files.py │ ├── filesplit.py │ ├── hashes.py │ ├── linesep.py │ ├── nosrrheader.py │ ├── rar_rebuild.py │ ├── rrcrcbruteforce.py │ ├── srr_bug.py │ ├── srrflagcheck.py │ └── tvmatch.py ├── fccleanup.py ├── group_series.py ├── list_compare.py ├── list_crcs.py ├── list_samples.py ├── mkvfix_usenet.py ├── more_files.py ├── move_scene.py ├── nzbsrr.py ├── repack_detector.py ├── screenshotcomparison.py ├── tvmove.py └── winrape_detector.py ├── setup.py ├── test_files ├── best_little │ ├── added_empty_file.srr │ ├── best_little.rar │ ├── best_little_sfxgui.exe │ └── srr_detected_as_sfx.exe ├── bug_detected_as_being_different │ ├── The.First.Great.Train.Robbery.1978.iNTERNAL.DVDRip.XviD-EXViDiNT_nzbsauto.srr │ └── The.First.Great.Train.Robbery.1978.iNTERNAL.DVDRip.XviD-EXViDiNT_yopom.srr ├── bug_detected_as_being_different2 │ ├── Top.Gear.S01E09.TVRiP.DiVX.iNTERNAL-GRiM_new.srr │ └── Top.Gear.S01E09.TVRiP.DiVX.iNTERNAL-GRiM_orig.srr ├── bug_detected_as_being_different3 │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── Akte.2012.08.01.German.Doku.WS.dTV.XViD-FiXTv_f4n4t.srr │ ├── Akte.2012.08.01.German.Doku.WS.dTV.XViD-FiXTv_nzbsauto.srr │ ├── The.Closer.S04E10.Zeitbomben.German.WS.DVDRip.XviD-EXPiRED_f4n4t.srr │ └── The.Closer.S04E10.Zeitbomben.German.WS.DVDRip.XviD-EXPiRED_nzbsauto.srr ├── cleanup_script │ ├── 007.A.View.To.A.Kill.1985.UE.iNTERNAL.DVDRip.XviD-iNCiTE.fine_2cd.srr │ ├── 007.Quantum.Of.Solace.DVDRip.XViD-PUKKA.cleanup_script.srr │ └── fixed │ │ ├── 007.A.View.To.A.Kill.1985.UE.iNTERNAL.DVDRip.XviD-iNCiTE.fine_2cd.srr │ │ └── 007.Quantum.Of.Solace.DVDRip.XViD-PUKKA.cleanup_script.srr ├── hash_capitals │ ├── Parlamentet.S06E02.SWEDiSH-SQC_alllower.srr │ └── Parlamentet.S06E02.SWEDiSH-SQC_capitals.srr ├── incomplete_srr │ └── Shark.Week.2012.Shark.Fight.HDTV.x264-KILLERS.srr ├── index.txt ├── media │ ├── .gitkeep │ └── README.md ├── no_files_stored │ ├── Burial.Ground.The.Nights.of.Terror.1981.DVDRip.XviD-spawny.srr │ ├── Hofmanns.Potion.2002.DVDRip.XviD-belos.srr │ └── Zombi.Holocaust.1980.DVDRip.XviD-spawny.srr ├── other │ ├── 007.A.View.To.A.Kill.1985.UE.iNTERNAL.DVDRip.XviD-iNCiTE_fine_2cd.srr │ ├── 007.Die.Another.Day.2002.iNTERNAL.DVDRip.XviD-iNCiTE.2CD_paths_stored.srr │ ├── 007.Quantum.Of.Solace.DVDRip.XViD-PUKKA_cleanup_script.srr │ ├── 24.S08E03.720p.BluRay.X264-WASABi_srrpathhack.srr │ ├── Antz.1998.iNTERNAL.DVDRip.XviD-SLeTDiVX.srr │ ├── Blood.2009.1080p.BluRay.x264-Japhson.srr │ ├── David.Letterman.2011.12.09.David.Duchovny.HDTV.XviD-2HD.srr │ ├── Dexter.S05E02.iNTERNAL.720p.HDTV.x264-ORENJI_vlcbugreport.srr │ ├── Dragons.Den.S06E06.WS.PDTV.XviD-SPAREL_no_app_name.srr │ ├── Enterprise.4x01.Storm_Front_Part1.DVDRip_XviD-FoV.srr │ ├── Enterprise.4x02.Storm_Front_Part2.DVDRip_XviD-FoV.srr │ ├── Farscape.S01E01.AC3.DivX.DVDRip.iNTERNAL-AMC_old_style_rr.srr │ ├── Father.Of.The.Bride.1.1991.INTERNAL.DVDRip.XviD-PtSL_sample_norebuild.srr │ ├── Game.of.Thrones.S01E02.The.Kingsroad.HDTV.XviD-FQM_vlc.srr │ ├── Game.of.Thrones.S01E07.HDTV.XviD-ASAP.srr │ ├── House.S06E12.720p.HDTV.x264-IMMERSE_rarfs_problem.srr │ ├── Jochem.Myjer.De.Rust.Zelve.2010.DUTCH.DVDRip.XviD-INViTED_sfv_case.srr │ ├── The.Shawshank.Redemption.1994.720p.BluRay.x264-SiNNERS_empty_sfv.srr │ ├── The.cLoser.S05E56.DVDRip.XviD-TOPAZ - kopie.srr │ ├── The.more.cLoser.S05E56.DVDRip.XviD-TOPAZ.srr │ ├── Zombi.Holocaust.1980.DVDRip.XviD-spawny_nofiles.srr │ ├── californication.s04e01.proper.hdtv.xvid-asap.srr │ └── house.713.hdtv-lol.srr ├── phptests │ ├── 001.phpt │ ├── 002.phpt │ ├── 003.phpt │ ├── 004.phpt │ ├── 005.phpt │ ├── 006.phpt │ ├── 007.phpt │ ├── 008.phpt │ ├── 009.phpt │ ├── 010.phpt │ ├── 011.phpt │ ├── 012.phpt │ ├── 013.phpt │ ├── 014.phpt │ ├── 015.phpt │ ├── 016.phpt │ ├── 017.phpt │ ├── 018.phpt │ ├── 019.phpt │ ├── 020.phpt │ ├── 021.phpt │ ├── 022.phpt │ ├── 023.phpt │ ├── 024.phpt │ ├── 025.phpt │ ├── 026.phpt │ ├── 027.phpt │ ├── 028.phpt │ ├── 029.phpt │ ├── 030.phpt │ ├── 031.phpt │ ├── 032.phpt │ ├── 033.phpt │ ├── 034.phpt │ ├── 035.phpt │ ├── 036.phpt │ ├── 037.phpt │ ├── 038.phpt │ ├── 039.phpt │ ├── 040.phpt │ ├── 041.phpt │ ├── 042.phpt │ ├── 043.phpt │ ├── 044.phpt │ ├── 045.phpt │ ├── 046.phpt │ ├── 047.phpt │ ├── 048.phpt │ ├── 049.phpt │ ├── 050.phpt │ ├── 051.phpt │ ├── 052.phpt │ ├── 053.phpt │ ├── 054.phpt │ ├── 055.phpt │ ├── 056.phpt │ ├── 057.phpt │ ├── 058.phpt │ ├── 059.phpt │ ├── 060.phpt │ ├── 061.phpt │ ├── 062.phpt │ ├── 063.phpt │ ├── 064.phpt │ ├── 065.phpt │ ├── 066.phpt │ ├── 067.phpt │ ├── 068.phpt │ ├── 069.phpt │ ├── 070.phpt │ ├── 071.phpt │ ├── 072.phpt │ ├── 073.phpt │ ├── 074.phpt │ ├── 075.phpt │ ├── 076.phpt │ ├── 077.phpt │ ├── 078.phpt │ ├── 079.phpt │ ├── 080.phpt │ ├── 081.phpt │ ├── 082.phpt │ ├── 083.phpt │ ├── 084.phpt │ ├── 085.phpt │ ├── 086.phpt │ ├── 087.phpt │ ├── 088.phpt │ ├── 089.phpt │ ├── 090.phpt │ ├── 091.phpt │ ├── 092.phpt │ ├── 093.phpt │ ├── 094.phpt │ ├── 095.phpt │ ├── 096.phpt │ ├── 097.phpt │ ├── 098.phpt │ ├── 4mb.rar │ ├── commented.rar │ ├── corrupted.rar │ ├── directories.rar │ ├── dirlink_unix.rar │ ├── dirs_and_extra_headers.rar │ ├── encrypted_headers.rar │ ├── encrypted_only_files.rar │ ├── garbage.part03.rar │ ├── latest_winrar.rar │ ├── linux_rar.rar │ ├── multi.part1.rar │ ├── multi.part2.rar │ ├── multi.part3.rar │ ├── multi_broken.part1.rar │ ├── rar_notrar.rar │ ├── rar_unicode.rar │ ├── repeated_name.rar │ ├── secret-crypted-none.rar │ ├── secret-none.rar │ ├── solid.rar │ ├── sparsefiles_rar.rar │ └── store_method.rar ├── store_empty │ ├── added_empty_file.srr │ ├── store_empty.rar │ └── store_empty.srr ├── store_little │ ├── recreate.txt │ ├── store_little.rar │ ├── store_little.srr │ ├── store_little_srrfile_with_path.srr │ └── store_little_srrfile_with_path_backslash.srr ├── store_rr_solid_auth_unicode_new │ ├── store_rr_solid_auth.part1.rar │ ├── store_rr_solid_auth.part1.srr │ ├── store_rr_solid_auth.part2.rar │ ├── store_rr_solid_auth.part3.rar │ └── store_rr_solid_auth.sfv ├── store_split_folder_old_srrsfv_windows │ ├── store_split_folder.r00 │ ├── store_split_folder.r01 │ ├── store_split_folder.rar │ ├── store_split_folder.sfv │ ├── store_split_folder.srr │ ├── winrar2.80.r00 │ ├── winrar2.80.r01 │ ├── winrar2.80.r02 │ ├── winrar2.80.r03 │ ├── winrar2.80.r04 │ ├── winrar2.80.r05 │ ├── winrar2.80.r06 │ ├── winrar2.80.r07 │ ├── winrar2.80.r08 │ ├── winrar2.80.r09 │ ├── winrar2.80.r10 │ ├── winrar2.80.r11 │ ├── winrar2.80.r12 │ ├── winrar2.80.r13 │ ├── winrar2.80.r14 │ ├── winrar2.80.r15 │ ├── winrar2.80.r16 │ ├── winrar2.80.rar │ └── winrar2.80.srr ├── store_utf8_comment │ ├── recreate.txt │ ├── store_utf8_comment.rar │ ├── store_utf8_comment.srr │ ├── utf8_filename_added.srr │ └── win_comment.rar └── txt │ ├── ansi_dos.nfo │ ├── ansi_mac.nfo │ ├── ansi_unix.nfo │ ├── checksum.sfv │ ├── checksum_copy.sfv │ ├── empty_file.txt │ ├── little_file.txt │ ├── unicode_dos.nfo │ ├── unicode_mac.nfo │ ├── unicode_unix.nfo │ ├── users_manual4.00.txt │ └── Κείμενο στην ελληνική γλώσσα.txt └── usenet ├── _yenc.so ├── images ├── imdb.jpg └── kere.ws.png ├── nzb_age.py ├── nzb_merge.py ├── nzb_rename.py ├── nzb_sample_extract.py ├── nzb_split.py ├── nzb_ue.py ├── nzb_utils.py ├── pynzb ├── __init__.py ├── base.py ├── etree_nzb.py ├── expat_nzb.py ├── lxml_nzb.py └── tests.py ├── srr_usenet.py ├── srr_usenet_template.cfg └── yenc.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | __pycache__/ 4 | dist/ 5 | test_files/media/*.avi 6 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/TODO -------------------------------------------------------------------------------- /alltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/alltests.py -------------------------------------------------------------------------------- /awescript/awescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/awescript/awescript.py -------------------------------------------------------------------------------- /bin/_preamble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/_preamble.py -------------------------------------------------------------------------------- /bin/linux/pysrr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/linux/pysrr.sh -------------------------------------------------------------------------------- /bin/linux/pysrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/linux/pysrs.sh -------------------------------------------------------------------------------- /bin/preprardir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/preprardir.py -------------------------------------------------------------------------------- /bin/py2exe/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/py2exe/README.txt -------------------------------------------------------------------------------- /bin/py2exe/auto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/py2exe/auto.bat -------------------------------------------------------------------------------- /bin/py2exe/shell_extension-setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/py2exe/shell_extension-setup.bat -------------------------------------------------------------------------------- /bin/py2exe/shell_extension-srrit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/py2exe/shell_extension-srrit.bat -------------------------------------------------------------------------------- /bin/pyrescene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/pyrescene.py -------------------------------------------------------------------------------- /bin/retag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/retag.py -------------------------------------------------------------------------------- /bin/srr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/srr.py -------------------------------------------------------------------------------- /bin/srr_extract_srs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/srr_extract_srs.py -------------------------------------------------------------------------------- /bin/srr_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/srr_merge.py -------------------------------------------------------------------------------- /bin/srr_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/srr_sort.py -------------------------------------------------------------------------------- /bin/srs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/srs.py -------------------------------------------------------------------------------- /bin/srs_bad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/srs_bad.py -------------------------------------------------------------------------------- /bin/srs_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/srs_batch.py -------------------------------------------------------------------------------- /bin/srs_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/srs_size.py -------------------------------------------------------------------------------- /bin/windows/add_current_dir_to_path.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/add_current_dir_to_path.bat -------------------------------------------------------------------------------- /bin/windows/ashellextension_setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/ashellextension_setup.bat -------------------------------------------------------------------------------- /bin/windows/ashellextension_srrit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/ashellextension_srrit.bat -------------------------------------------------------------------------------- /bin/windows/best.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/best.bat -------------------------------------------------------------------------------- /bin/windows/preprardir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/preprardir.bat -------------------------------------------------------------------------------- /bin/windows/pyrescene.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/pyrescene.bat -------------------------------------------------------------------------------- /bin/windows/pysrr.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | REM Reconstruct RARs with a .srr file. 3 | python.exe %~dp0..\srr.py %* -------------------------------------------------------------------------------- /bin/windows/pysrs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/pysrs.bat -------------------------------------------------------------------------------- /bin/windows/rerar.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/rerar.bat -------------------------------------------------------------------------------- /bin/windows/retag.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | REM Fix the tagging of music files. 3 | python.exe %~dp0..\retag.py %* -------------------------------------------------------------------------------- /bin/windows/srr_extract.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/srr_extract.bat -------------------------------------------------------------------------------- /bin/windows/srr_extract_srs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/srr_extract_srs.bat -------------------------------------------------------------------------------- /bin/windows/srr_merge.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | REM Join two .srr files together. 3 | python.exe %~dp0..\srr_merge.py %* -------------------------------------------------------------------------------- /bin/windows/srr_sort.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/srr_sort.bat -------------------------------------------------------------------------------- /bin/windows/srs_bad.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | REM Search SRR files for sample issues. 3 | python.exe %~dp0..\srs_bad.py %* -------------------------------------------------------------------------------- /bin/windows/srs_size.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/srs_size.bat -------------------------------------------------------------------------------- /bin/windows/vs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/bin/windows/vs.bat -------------------------------------------------------------------------------- /dev-docs/archive/Info-ZIP.appnote.20040528.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/archive/Info-ZIP.appnote.20040528.txt -------------------------------------------------------------------------------- /dev-docs/archive/ZIP.Appnote.PKWARE.6.3.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/archive/ZIP.Appnote.PKWARE.6.3.2.txt -------------------------------------------------------------------------------- /dev-docs/archive/ace.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/archive/ace.doc -------------------------------------------------------------------------------- /dev-docs/archive/arj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/archive/arj.txt -------------------------------------------------------------------------------- /dev-docs/archive/crc_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/archive/crc_v3.txt -------------------------------------------------------------------------------- /dev-docs/archive/udf102.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/archive/udf102.pdf -------------------------------------------------------------------------------- /dev-docs/archive/udf260.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/archive/udf260.pdf -------------------------------------------------------------------------------- /dev-docs/audio/FLAC - format.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/audio/FLAC - format.mht -------------------------------------------------------------------------------- /dev-docs/audio/MP3 File Format Specification.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/audio/MP3 File Format Specification.mht -------------------------------------------------------------------------------- /dev-docs/audio/MP3 File Structure Description.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/audio/MP3 File Structure Description.mht -------------------------------------------------------------------------------- /dev-docs/audio/MPEG AUDIO FRAME HEADER.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/audio/MPEG AUDIO FRAME HEADER.mht -------------------------------------------------------------------------------- /dev-docs/audio/Pairwise_Boosted_Audio_Fingerprint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/audio/Pairwise_Boosted_Audio_Fingerprint.pdf -------------------------------------------------------------------------------- /dev-docs/audio/ThumbnailingMM05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/audio/ThumbnailingMM05.pdf -------------------------------------------------------------------------------- /dev-docs/audio/cvpr2005-mr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/audio/cvpr2005-mr.pdf -------------------------------------------------------------------------------- /dev-docs/code/DeleteWMPTagsFromMP4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/DeleteWMPTagsFromMP4.cs -------------------------------------------------------------------------------- /dev-docs/code/NeWbY-fix_music.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/NeWbY-fix_music.txt -------------------------------------------------------------------------------- /dev-docs/code/alpine_docker_pyrescene-harrox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/alpine_docker_pyrescene-harrox.txt -------------------------------------------------------------------------------- /dev-docs/code/eW7bVNdv_acm3-drag-n-drop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/eW7bVNdv_acm3-drag-n-drop.txt -------------------------------------------------------------------------------- /dev-docs/code/recreate.bat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/recreate.bat.txt -------------------------------------------------------------------------------- /dev-docs/code/scenesort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/scenesort.sh -------------------------------------------------------------------------------- /dev-docs/code/script_AfroNinja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/script_AfroNinja.txt -------------------------------------------------------------------------------- /dev-docs/code/srr-srs_creation_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/srr-srs_creation_script.txt -------------------------------------------------------------------------------- /dev-docs/code/srr_srrdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/srr_srrdb.sh -------------------------------------------------------------------------------- /dev-docs/code/srr_srs_all.bat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/srr_srs_all.bat.txt -------------------------------------------------------------------------------- /dev-docs/code/srr_srs_all_ex.bat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/srr_srs_all_ex.bat.txt -------------------------------------------------------------------------------- /dev-docs/code/srr_srs_folder.bat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/srr_srs_folder.bat.txt -------------------------------------------------------------------------------- /dev-docs/code/wormdrink/auto-srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/wormdrink/auto-srr -------------------------------------------------------------------------------- /dev-docs/code/wormdrink/invoke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/wormdrink/invoke.txt -------------------------------------------------------------------------------- /dev-docs/code/wormdrink/utils.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/wormdrink/utils.lib.sh -------------------------------------------------------------------------------- /dev-docs/code/wrC2Gcms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/wrC2Gcms.txt -------------------------------------------------------------------------------- /dev-docs/code/yopom_CHKsrs.0.4.4.2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/yopom_CHKsrs.0.4.4.2.bat -------------------------------------------------------------------------------- /dev-docs/code/yopom_chksrs.bat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/yopom_chksrs.bat.txt -------------------------------------------------------------------------------- /dev-docs/code/yopom_chksrs2.bat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/yopom_chksrs2.bat.txt -------------------------------------------------------------------------------- /dev-docs/code/yopom_crccheck.bat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/yopom_crccheck.bat.txt -------------------------------------------------------------------------------- /dev-docs/code/yopom_rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/yopom_rr.c -------------------------------------------------------------------------------- /dev-docs/code/yopom_runSRS.V.0.4.3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/code/yopom_runSRS.V.0.4.3.bat -------------------------------------------------------------------------------- /dev-docs/extlibs/rar_SSokolow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/extlibs/rar_SSokolow.py -------------------------------------------------------------------------------- /dev-docs/extlibs/rar_hachoir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/extlibs/rar_hachoir.py -------------------------------------------------------------------------------- /dev-docs/extlibs/rarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/extlibs/rarfile.py -------------------------------------------------------------------------------- /dev-docs/pyrescene/reconstructed.avi.with.wrong.disk/battlestar.galactica.2003.ws.dvdrip.xvid-sfm.sample_fails.srs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/pyrescene/reconstructed.avi.with.wrong.disk/battlestar.galactica.2003.ws.dvdrip.xvid-sfm.sample_fails.srs -------------------------------------------------------------------------------- /dev-docs/pyrescene/reconstructed.avi.with.wrong.disk/battlestar.galactica.2003.ws.dvdrip.xvid-sfm.sample_succeeds.srs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/pyrescene/reconstructed.avi.with.wrong.disk/battlestar.galactica.2003.ws.dvdrip.xvid-sfm.sample_succeeds.srs -------------------------------------------------------------------------------- /dev-docs/pyrescene/reconstructed.avi.with.wrong.disk/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/pyrescene/reconstructed.avi.with.wrong.disk/info.txt -------------------------------------------------------------------------------- /dev-docs/rar/RAR202.txt.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/RAR202.txt.nfo -------------------------------------------------------------------------------- /dev-docs/rar/TechNote3.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/TechNote3.00.txt -------------------------------------------------------------------------------- /dev-docs/rar/TechNote4.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/TechNote4.00.txt -------------------------------------------------------------------------------- /dev-docs/rar/Winrar_irl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/Winrar_irl.png -------------------------------------------------------------------------------- /dev-docs/rar/history3.70-3.93.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/history3.70-3.93.txt -------------------------------------------------------------------------------- /dev-docs/rar/history3.80-4.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/history3.80-4.00.txt -------------------------------------------------------------------------------- /dev-docs/rar/history3.80-4.00b7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/history3.80-4.00b7.txt -------------------------------------------------------------------------------- /dev-docs/rar/rar_faq.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/rar_faq.zip -------------------------------------------------------------------------------- /dev-docs/rar/rarfile-2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/rarfile-2.2.tar.gz -------------------------------------------------------------------------------- /dev-docs/rar/rarfile-2.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/rarfile-2.3.tar.gz -------------------------------------------------------------------------------- /dev-docs/rar/unrar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/unrar.png -------------------------------------------------------------------------------- /dev-docs/rar/users_manual2.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/users_manual2.00.txt -------------------------------------------------------------------------------- /dev-docs/rar/users_manual3.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/users_manual3.00.txt -------------------------------------------------------------------------------- /dev-docs/rar/users_manual4.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rar/users_manual4.00.txt -------------------------------------------------------------------------------- /dev-docs/requests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/requests.txt -------------------------------------------------------------------------------- /dev-docs/rescene .NET/gomtuu_fix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/gomtuu_fix.txt -------------------------------------------------------------------------------- /dev-docs/rescene .NET/gomtuu_umlaut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/gomtuu_umlaut.txt -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/ArgParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/ArgParser.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/Crc32.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/RarBlocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/RarBlocks.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/RarFileNameComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/RarFileNameComparer.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/RarFileNameFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/RarFileNameFinder.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/RarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/RarReader.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/RarStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/RarStream.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/SfvReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/SfvReader.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/license.txt -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srr.1.2.cs/srr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srr.1.2.cs/srr.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs-1.2-decoded_source.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs-1.2-decoded_source.rar -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs-1.3-decoded_source.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs-1.3-decoded_source.rar -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/AVI/AviReSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/AVI/AviReSample.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/AVI/RiffReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/AVI/RiffReader.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/ByteArrayComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/ByteArrayComparer.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/MKV/EbmlReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/MKV/EbmlReader.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/MKV/MkvReSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/MKV/MkvReSample.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/SampleAttachmentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/SampleAttachmentInfo.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/SampleFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/SampleFileInfo.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/SampleTrackInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/SampleTrackInfo.cs -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/license.txt -------------------------------------------------------------------------------- /dev-docs/rescene .NET/srs.1.2.cs/srs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/rescene .NET/srs.1.2.cs/srs.cs -------------------------------------------------------------------------------- /dev-docs/srr_spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/srr_spec.txt -------------------------------------------------------------------------------- /dev-docs/video/FileFormats.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/FileFormats.rar -------------------------------------------------------------------------------- /dev-docs/video/asf/ASF_Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/asf/ASF_Specification.pdf -------------------------------------------------------------------------------- /dev-docs/video/asf/US6041345.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/asf/US6041345.pdf -------------------------------------------------------------------------------- /dev-docs/video/asf/asf-1.0.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/asf/asf-1.0.htm -------------------------------------------------------------------------------- /dev-docs/video/asf/draft-fleischman-asf-00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/asf/draft-fleischman-asf-00.txt -------------------------------------------------------------------------------- /dev-docs/video/avi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/avi.pdf -------------------------------------------------------------------------------- /dev-docs/video/containers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/containers.pdf -------------------------------------------------------------------------------- /dev-docs/video/m2ts/2b_bdrom_audiovisualapplication_0305-12955-15269.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/m2ts/2b_bdrom_audiovisualapplication_0305-12955-15269.pdf -------------------------------------------------------------------------------- /dev-docs/video/m2ts/bdj_gem_application_definition-15496.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/m2ts/bdj_gem_application_definition-15496.pdf -------------------------------------------------------------------------------- /dev-docs/video/m2ts/mpeg2ts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/m2ts/mpeg2ts.pdf -------------------------------------------------------------------------------- /dev-docs/video/matroska.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska.pdf -------------------------------------------------------------------------------- /dev-docs/video/matroska/Cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/Cluster.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/Cues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/Cues.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/MatroskaParser.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/MatroskaParser.pm -------------------------------------------------------------------------------- /dev-docs/video/matroska/Seekhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/Seekhead.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/SegmentInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/SegmentInfo.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/Tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/Tags.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/Tags2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/Tags2.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/chapters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/chapters.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/ebml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/ebml.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/matroska.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/matroska.tex -------------------------------------------------------------------------------- /dev-docs/video/matroska/matroska_header_striping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/matroska_header_striping.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/matroska_l0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/matroska_l0.png -------------------------------------------------------------------------------- /dev-docs/video/matroska/matroska_segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/matroska/matroska_segment.png -------------------------------------------------------------------------------- /dev-docs/video/mp4/ISO_14496-14_MP4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/ISO_14496-14_MP4.pdf -------------------------------------------------------------------------------- /dev-docs/video/mp4/QuickTime container - MultimediaWiki.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/QuickTime container - MultimediaWiki.mht -------------------------------------------------------------------------------- /dev-docs/video/mp4/Thompson's Technological Insight_ MP4 File Format Part 1.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/Thompson's Technological Insight_ MP4 File Format Part 1.mht -------------------------------------------------------------------------------- /dev-docs/video/mp4/Thompson's Technological Insight_ MP4 File Format Part 2.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/Thompson's Technological Insight_ MP4 File Format Part 2.mht -------------------------------------------------------------------------------- /dev-docs/video/mp4/c041828_ISO_IEC_14496-12_2005(E).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/c041828_ISO_IEC_14496-12_2005(E).zip -------------------------------------------------------------------------------- /dev-docs/video/mp4/c051533_ISO_IEC_14496-12_2008.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/c051533_ISO_IEC_14496-12_2008.zip -------------------------------------------------------------------------------- /dev-docs/video/mp4/info_isoiec14496-14%7Bed1.0%7Den_preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/info_isoiec14496-14%7Bed1.0%7Den_preview.pdf -------------------------------------------------------------------------------- /dev-docs/video/mp4/isoviewer-2.0-RC-15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/isoviewer-2.0-RC-15.jar -------------------------------------------------------------------------------- /dev-docs/video/mp4/mp4-layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/mp4-layout.txt -------------------------------------------------------------------------------- /dev-docs/video/mp4/qtff-2001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/mp4/qtff-2001.pdf -------------------------------------------------------------------------------- /dev-docs/video/odmlff2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/odmlff2.pdf -------------------------------------------------------------------------------- /dev-docs/video/riff/Extended AVI structure checker/cap01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/Extended AVI structure checker/cap01.txt -------------------------------------------------------------------------------- /dev-docs/video/riff/Extended AVI structure checker/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/Extended AVI structure checker/info.txt -------------------------------------------------------------------------------- /dev-docs/video/riff/Extended AVI structure checker/rifflist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/Extended AVI structure checker/rifflist.zip -------------------------------------------------------------------------------- /dev-docs/video/riff/Multimedia Programming Interface and Data Specifications 1.0.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/Multimedia Programming Interface and Data Specifications 1.0.mht -------------------------------------------------------------------------------- /dev-docs/video/riff/RIFF File Structure.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RIFF File Structure.mht -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/Studio Dust MP3 RIFF Header Generator.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/Studio Dust MP3 RIFF Header Generator.mht -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/riffmp3_bsdi.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/riffmp3_bsdi.tar.gz -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/riffmp3_linux.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/riffmp3_linux.tar.gz -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/riffmp3_linux_elf.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/riffmp3_linux_elf.tar.gz -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/riffmp3_msdos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/riffmp3_msdos.zip -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/riffmp3_osx_intel.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/riffmp3_osx_intel.tar.gz -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/riffmp3_osx_ppc.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/riffmp3_osx_ppc.tar.gz -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/riffmp3_solaris_sparc.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/riffmp3_solaris_sparc.tar.gz -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/riffmp3_solaris_x86.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/riffmp3_solaris_x86.tar.gz -------------------------------------------------------------------------------- /dev-docs/video/riff/RiffMP3/riffmp3_sunos.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/RiffMP3/riffmp3_sunos.tar.gz -------------------------------------------------------------------------------- /dev-docs/video/riff/avi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/avi.txt -------------------------------------------------------------------------------- /dev-docs/video/riff/mpidata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/mpidata.txt -------------------------------------------------------------------------------- /dev-docs/video/riff/riff.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/video/riff/riff.zip -------------------------------------------------------------------------------- /dev-docs/webpages/FiReScene - faqs.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/webpages/FiReScene - faqs.mht -------------------------------------------------------------------------------- /dev-docs/webpages/FiReScene - software.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/webpages/FiReScene - software.mht -------------------------------------------------------------------------------- /dev-docs/webpages/srrDB.mht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/dev-docs/webpages/srrDB.mht -------------------------------------------------------------------------------- /images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/images/icon.ico -------------------------------------------------------------------------------- /images/icon128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/images/icon128x128.png -------------------------------------------------------------------------------- /images/icon16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/images/icon16x16.png -------------------------------------------------------------------------------- /images/icon32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/images/icon32x32.png -------------------------------------------------------------------------------- /rerar/rar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rerar/rar.py -------------------------------------------------------------------------------- /rerar/rarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rerar/rarfile.py -------------------------------------------------------------------------------- /rerar/rerar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rerar/rerar.py -------------------------------------------------------------------------------- /resample/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/__init__.py -------------------------------------------------------------------------------- /resample/asf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/asf.py -------------------------------------------------------------------------------- /resample/ebml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/ebml.py -------------------------------------------------------------------------------- /resample/flac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/flac.py -------------------------------------------------------------------------------- /resample/fpcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/fpcalc.py -------------------------------------------------------------------------------- /resample/m2ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/m2ts.py -------------------------------------------------------------------------------- /resample/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/main.py -------------------------------------------------------------------------------- /resample/mov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/mov.py -------------------------------------------------------------------------------- /resample/mp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/mp3.py -------------------------------------------------------------------------------- /resample/riff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/riff.py -------------------------------------------------------------------------------- /resample/srs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/srs.py -------------------------------------------------------------------------------- /resample/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/stream.py -------------------------------------------------------------------------------- /resample/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resample/test/test_ebml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/test/test_ebml.py -------------------------------------------------------------------------------- /resample/test/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/test/test_main.py -------------------------------------------------------------------------------- /resample/test/test_mp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/resample/test/test_mp3.py -------------------------------------------------------------------------------- /rescene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/__init__.py -------------------------------------------------------------------------------- /rescene/crc32combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/crc32combine.py -------------------------------------------------------------------------------- /rescene/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/main.py -------------------------------------------------------------------------------- /rescene/ordereddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/ordereddict.py -------------------------------------------------------------------------------- /rescene/osohash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/osohash.py -------------------------------------------------------------------------------- /rescene/rar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/rar.py -------------------------------------------------------------------------------- /rescene/rarstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/rarstream.py -------------------------------------------------------------------------------- /rescene/srr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/srr.py -------------------------------------------------------------------------------- /rescene/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rescene/test/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/test/test_main.py -------------------------------------------------------------------------------- /rescene/test/test_osohash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/test/test_osohash.py -------------------------------------------------------------------------------- /rescene/test/test_rar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/test/test_rar.py -------------------------------------------------------------------------------- /rescene/test/test_rarstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/test/test_rarstream.py -------------------------------------------------------------------------------- /rescene/test/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/test/test_utility.py -------------------------------------------------------------------------------- /rescene/unrar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/unrar.py -------------------------------------------------------------------------------- /rescene/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/rescene/utility.py -------------------------------------------------------------------------------- /scripts/bitflip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/bitflip.py -------------------------------------------------------------------------------- /scripts/count_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/count_groups.py -------------------------------------------------------------------------------- /scripts/experiments/bruteforce_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/bruteforce_time.py -------------------------------------------------------------------------------- /scripts/experiments/check_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/check_image.py -------------------------------------------------------------------------------- /scripts/experiments/compr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/compr.py -------------------------------------------------------------------------------- /scripts/experiments/createrar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/createrar.py -------------------------------------------------------------------------------- /scripts/experiments/del_nfos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/del_nfos.py -------------------------------------------------------------------------------- /scripts/experiments/delete_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/delete_files.py -------------------------------------------------------------------------------- /scripts/experiments/filesplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/filesplit.py -------------------------------------------------------------------------------- /scripts/experiments/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/hashes.py -------------------------------------------------------------------------------- /scripts/experiments/linesep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/linesep.py -------------------------------------------------------------------------------- /scripts/experiments/nosrrheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/nosrrheader.py -------------------------------------------------------------------------------- /scripts/experiments/rar_rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/rar_rebuild.py -------------------------------------------------------------------------------- /scripts/experiments/rrcrcbruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/rrcrcbruteforce.py -------------------------------------------------------------------------------- /scripts/experiments/srr_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/srr_bug.py -------------------------------------------------------------------------------- /scripts/experiments/srrflagcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/srrflagcheck.py -------------------------------------------------------------------------------- /scripts/experiments/tvmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/experiments/tvmatch.py -------------------------------------------------------------------------------- /scripts/fccleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/fccleanup.py -------------------------------------------------------------------------------- /scripts/group_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/group_series.py -------------------------------------------------------------------------------- /scripts/list_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/list_compare.py -------------------------------------------------------------------------------- /scripts/list_crcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/list_crcs.py -------------------------------------------------------------------------------- /scripts/list_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/list_samples.py -------------------------------------------------------------------------------- /scripts/mkvfix_usenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/mkvfix_usenet.py -------------------------------------------------------------------------------- /scripts/more_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/more_files.py -------------------------------------------------------------------------------- /scripts/move_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/move_scene.py -------------------------------------------------------------------------------- /scripts/nzbsrr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/nzbsrr.py -------------------------------------------------------------------------------- /scripts/repack_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/repack_detector.py -------------------------------------------------------------------------------- /scripts/screenshotcomparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/screenshotcomparison.py -------------------------------------------------------------------------------- /scripts/tvmove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/tvmove.py -------------------------------------------------------------------------------- /scripts/winrape_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/scripts/winrape_detector.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/setup.py -------------------------------------------------------------------------------- /test_files/best_little/added_empty_file.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/best_little/added_empty_file.srr -------------------------------------------------------------------------------- /test_files/best_little/best_little.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/best_little/best_little.rar -------------------------------------------------------------------------------- /test_files/best_little/best_little_sfxgui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/best_little/best_little_sfxgui.exe -------------------------------------------------------------------------------- /test_files/best_little/srr_detected_as_sfx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/best_little/srr_detected_as_sfx.exe -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different/The.First.Great.Train.Robbery.1978.iNTERNAL.DVDRip.XviD-EXViDiNT_nzbsauto.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different/The.First.Great.Train.Robbery.1978.iNTERNAL.DVDRip.XviD-EXViDiNT_nzbsauto.srr -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different/The.First.Great.Train.Robbery.1978.iNTERNAL.DVDRip.XviD-EXViDiNT_yopom.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different/The.First.Great.Train.Robbery.1978.iNTERNAL.DVDRip.XviD-EXViDiNT_yopom.srr -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different2/Top.Gear.S01E09.TVRiP.DiVX.iNTERNAL-GRiM_new.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different2/Top.Gear.S01E09.TVRiP.DiVX.iNTERNAL-GRiM_new.srr -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different2/Top.Gear.S01E09.TVRiP.DiVX.iNTERNAL-GRiM_orig.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different2/Top.Gear.S01E09.TVRiP.DiVX.iNTERNAL-GRiM_orig.srr -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different3/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different3/1.txt -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different3/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different3/2.txt -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different3/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different3/3.txt -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different3/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different3/4.txt -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different3/Akte.2012.08.01.German.Doku.WS.dTV.XViD-FiXTv_f4n4t.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different3/Akte.2012.08.01.German.Doku.WS.dTV.XViD-FiXTv_f4n4t.srr -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different3/Akte.2012.08.01.German.Doku.WS.dTV.XViD-FiXTv_nzbsauto.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different3/Akte.2012.08.01.German.Doku.WS.dTV.XViD-FiXTv_nzbsauto.srr -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different3/The.Closer.S04E10.Zeitbomben.German.WS.DVDRip.XviD-EXPiRED_f4n4t.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different3/The.Closer.S04E10.Zeitbomben.German.WS.DVDRip.XviD-EXPiRED_f4n4t.srr -------------------------------------------------------------------------------- /test_files/bug_detected_as_being_different3/The.Closer.S04E10.Zeitbomben.German.WS.DVDRip.XviD-EXPiRED_nzbsauto.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/bug_detected_as_being_different3/The.Closer.S04E10.Zeitbomben.German.WS.DVDRip.XviD-EXPiRED_nzbsauto.srr -------------------------------------------------------------------------------- /test_files/cleanup_script/007.A.View.To.A.Kill.1985.UE.iNTERNAL.DVDRip.XviD-iNCiTE.fine_2cd.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/cleanup_script/007.A.View.To.A.Kill.1985.UE.iNTERNAL.DVDRip.XviD-iNCiTE.fine_2cd.srr -------------------------------------------------------------------------------- /test_files/cleanup_script/007.Quantum.Of.Solace.DVDRip.XViD-PUKKA.cleanup_script.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/cleanup_script/007.Quantum.Of.Solace.DVDRip.XViD-PUKKA.cleanup_script.srr -------------------------------------------------------------------------------- /test_files/cleanup_script/fixed/007.A.View.To.A.Kill.1985.UE.iNTERNAL.DVDRip.XviD-iNCiTE.fine_2cd.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/cleanup_script/fixed/007.A.View.To.A.Kill.1985.UE.iNTERNAL.DVDRip.XviD-iNCiTE.fine_2cd.srr -------------------------------------------------------------------------------- /test_files/cleanup_script/fixed/007.Quantum.Of.Solace.DVDRip.XViD-PUKKA.cleanup_script.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/cleanup_script/fixed/007.Quantum.Of.Solace.DVDRip.XViD-PUKKA.cleanup_script.srr -------------------------------------------------------------------------------- /test_files/hash_capitals/Parlamentet.S06E02.SWEDiSH-SQC_alllower.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/hash_capitals/Parlamentet.S06E02.SWEDiSH-SQC_alllower.srr -------------------------------------------------------------------------------- /test_files/hash_capitals/Parlamentet.S06E02.SWEDiSH-SQC_capitals.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/hash_capitals/Parlamentet.S06E02.SWEDiSH-SQC_capitals.srr -------------------------------------------------------------------------------- /test_files/incomplete_srr/Shark.Week.2012.Shark.Fight.HDTV.x264-KILLERS.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/incomplete_srr/Shark.Week.2012.Shark.Fight.HDTV.x264-KILLERS.srr -------------------------------------------------------------------------------- /test_files/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/index.txt -------------------------------------------------------------------------------- /test_files/media/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_files/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/media/README.md -------------------------------------------------------------------------------- /test_files/no_files_stored/Burial.Ground.The.Nights.of.Terror.1981.DVDRip.XviD-spawny.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/no_files_stored/Burial.Ground.The.Nights.of.Terror.1981.DVDRip.XviD-spawny.srr -------------------------------------------------------------------------------- /test_files/no_files_stored/Hofmanns.Potion.2002.DVDRip.XviD-belos.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/no_files_stored/Hofmanns.Potion.2002.DVDRip.XviD-belos.srr -------------------------------------------------------------------------------- /test_files/no_files_stored/Zombi.Holocaust.1980.DVDRip.XviD-spawny.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/no_files_stored/Zombi.Holocaust.1980.DVDRip.XviD-spawny.srr -------------------------------------------------------------------------------- /test_files/other/007.A.View.To.A.Kill.1985.UE.iNTERNAL.DVDRip.XviD-iNCiTE_fine_2cd.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/007.A.View.To.A.Kill.1985.UE.iNTERNAL.DVDRip.XviD-iNCiTE_fine_2cd.srr -------------------------------------------------------------------------------- /test_files/other/007.Die.Another.Day.2002.iNTERNAL.DVDRip.XviD-iNCiTE.2CD_paths_stored.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/007.Die.Another.Day.2002.iNTERNAL.DVDRip.XviD-iNCiTE.2CD_paths_stored.srr -------------------------------------------------------------------------------- /test_files/other/007.Quantum.Of.Solace.DVDRip.XViD-PUKKA_cleanup_script.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/007.Quantum.Of.Solace.DVDRip.XViD-PUKKA_cleanup_script.srr -------------------------------------------------------------------------------- /test_files/other/24.S08E03.720p.BluRay.X264-WASABi_srrpathhack.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/24.S08E03.720p.BluRay.X264-WASABi_srrpathhack.srr -------------------------------------------------------------------------------- /test_files/other/Antz.1998.iNTERNAL.DVDRip.XviD-SLeTDiVX.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Antz.1998.iNTERNAL.DVDRip.XviD-SLeTDiVX.srr -------------------------------------------------------------------------------- /test_files/other/Blood.2009.1080p.BluRay.x264-Japhson.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Blood.2009.1080p.BluRay.x264-Japhson.srr -------------------------------------------------------------------------------- /test_files/other/David.Letterman.2011.12.09.David.Duchovny.HDTV.XviD-2HD.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/David.Letterman.2011.12.09.David.Duchovny.HDTV.XviD-2HD.srr -------------------------------------------------------------------------------- /test_files/other/Dexter.S05E02.iNTERNAL.720p.HDTV.x264-ORENJI_vlcbugreport.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Dexter.S05E02.iNTERNAL.720p.HDTV.x264-ORENJI_vlcbugreport.srr -------------------------------------------------------------------------------- /test_files/other/Dragons.Den.S06E06.WS.PDTV.XviD-SPAREL_no_app_name.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Dragons.Den.S06E06.WS.PDTV.XviD-SPAREL_no_app_name.srr -------------------------------------------------------------------------------- /test_files/other/Enterprise.4x01.Storm_Front_Part1.DVDRip_XviD-FoV.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Enterprise.4x01.Storm_Front_Part1.DVDRip_XviD-FoV.srr -------------------------------------------------------------------------------- /test_files/other/Enterprise.4x02.Storm_Front_Part2.DVDRip_XviD-FoV.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Enterprise.4x02.Storm_Front_Part2.DVDRip_XviD-FoV.srr -------------------------------------------------------------------------------- /test_files/other/Farscape.S01E01.AC3.DivX.DVDRip.iNTERNAL-AMC_old_style_rr.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Farscape.S01E01.AC3.DivX.DVDRip.iNTERNAL-AMC_old_style_rr.srr -------------------------------------------------------------------------------- /test_files/other/Father.Of.The.Bride.1.1991.INTERNAL.DVDRip.XviD-PtSL_sample_norebuild.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Father.Of.The.Bride.1.1991.INTERNAL.DVDRip.XviD-PtSL_sample_norebuild.srr -------------------------------------------------------------------------------- /test_files/other/Game.of.Thrones.S01E02.The.Kingsroad.HDTV.XviD-FQM_vlc.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Game.of.Thrones.S01E02.The.Kingsroad.HDTV.XviD-FQM_vlc.srr -------------------------------------------------------------------------------- /test_files/other/Game.of.Thrones.S01E07.HDTV.XviD-ASAP.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Game.of.Thrones.S01E07.HDTV.XviD-ASAP.srr -------------------------------------------------------------------------------- /test_files/other/House.S06E12.720p.HDTV.x264-IMMERSE_rarfs_problem.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/House.S06E12.720p.HDTV.x264-IMMERSE_rarfs_problem.srr -------------------------------------------------------------------------------- /test_files/other/Jochem.Myjer.De.Rust.Zelve.2010.DUTCH.DVDRip.XviD-INViTED_sfv_case.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Jochem.Myjer.De.Rust.Zelve.2010.DUTCH.DVDRip.XviD-INViTED_sfv_case.srr -------------------------------------------------------------------------------- /test_files/other/The.Shawshank.Redemption.1994.720p.BluRay.x264-SiNNERS_empty_sfv.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/The.Shawshank.Redemption.1994.720p.BluRay.x264-SiNNERS_empty_sfv.srr -------------------------------------------------------------------------------- /test_files/other/The.cLoser.S05E56.DVDRip.XviD-TOPAZ - kopie.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/The.cLoser.S05E56.DVDRip.XviD-TOPAZ - kopie.srr -------------------------------------------------------------------------------- /test_files/other/The.more.cLoser.S05E56.DVDRip.XviD-TOPAZ.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/The.more.cLoser.S05E56.DVDRip.XviD-TOPAZ.srr -------------------------------------------------------------------------------- /test_files/other/Zombi.Holocaust.1980.DVDRip.XviD-spawny_nofiles.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/Zombi.Holocaust.1980.DVDRip.XviD-spawny_nofiles.srr -------------------------------------------------------------------------------- /test_files/other/californication.s04e01.proper.hdtv.xvid-asap.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/californication.s04e01.proper.hdtv.xvid-asap.srr -------------------------------------------------------------------------------- /test_files/other/house.713.hdtv-lol.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/other/house.713.hdtv-lol.srr -------------------------------------------------------------------------------- /test_files/phptests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/001.phpt -------------------------------------------------------------------------------- /test_files/phptests/002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/002.phpt -------------------------------------------------------------------------------- /test_files/phptests/003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/003.phpt -------------------------------------------------------------------------------- /test_files/phptests/004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/004.phpt -------------------------------------------------------------------------------- /test_files/phptests/005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/005.phpt -------------------------------------------------------------------------------- /test_files/phptests/006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/006.phpt -------------------------------------------------------------------------------- /test_files/phptests/007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/007.phpt -------------------------------------------------------------------------------- /test_files/phptests/008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/008.phpt -------------------------------------------------------------------------------- /test_files/phptests/009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/009.phpt -------------------------------------------------------------------------------- /test_files/phptests/010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/010.phpt -------------------------------------------------------------------------------- /test_files/phptests/011.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/011.phpt -------------------------------------------------------------------------------- /test_files/phptests/012.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/012.phpt -------------------------------------------------------------------------------- /test_files/phptests/013.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/013.phpt -------------------------------------------------------------------------------- /test_files/phptests/014.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/014.phpt -------------------------------------------------------------------------------- /test_files/phptests/015.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/015.phpt -------------------------------------------------------------------------------- /test_files/phptests/016.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/016.phpt -------------------------------------------------------------------------------- /test_files/phptests/017.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/017.phpt -------------------------------------------------------------------------------- /test_files/phptests/018.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/018.phpt -------------------------------------------------------------------------------- /test_files/phptests/019.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/019.phpt -------------------------------------------------------------------------------- /test_files/phptests/020.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/020.phpt -------------------------------------------------------------------------------- /test_files/phptests/021.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/021.phpt -------------------------------------------------------------------------------- /test_files/phptests/022.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/022.phpt -------------------------------------------------------------------------------- /test_files/phptests/023.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/023.phpt -------------------------------------------------------------------------------- /test_files/phptests/024.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/024.phpt -------------------------------------------------------------------------------- /test_files/phptests/025.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/025.phpt -------------------------------------------------------------------------------- /test_files/phptests/026.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/026.phpt -------------------------------------------------------------------------------- /test_files/phptests/027.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/027.phpt -------------------------------------------------------------------------------- /test_files/phptests/028.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/028.phpt -------------------------------------------------------------------------------- /test_files/phptests/029.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/029.phpt -------------------------------------------------------------------------------- /test_files/phptests/030.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/030.phpt -------------------------------------------------------------------------------- /test_files/phptests/031.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/031.phpt -------------------------------------------------------------------------------- /test_files/phptests/032.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/032.phpt -------------------------------------------------------------------------------- /test_files/phptests/033.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/033.phpt -------------------------------------------------------------------------------- /test_files/phptests/034.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/034.phpt -------------------------------------------------------------------------------- /test_files/phptests/035.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/035.phpt -------------------------------------------------------------------------------- /test_files/phptests/036.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/036.phpt -------------------------------------------------------------------------------- /test_files/phptests/037.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/037.phpt -------------------------------------------------------------------------------- /test_files/phptests/038.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/038.phpt -------------------------------------------------------------------------------- /test_files/phptests/039.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/039.phpt -------------------------------------------------------------------------------- /test_files/phptests/040.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/040.phpt -------------------------------------------------------------------------------- /test_files/phptests/041.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/041.phpt -------------------------------------------------------------------------------- /test_files/phptests/042.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/042.phpt -------------------------------------------------------------------------------- /test_files/phptests/043.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/043.phpt -------------------------------------------------------------------------------- /test_files/phptests/044.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/044.phpt -------------------------------------------------------------------------------- /test_files/phptests/045.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/045.phpt -------------------------------------------------------------------------------- /test_files/phptests/046.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/046.phpt -------------------------------------------------------------------------------- /test_files/phptests/047.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/047.phpt -------------------------------------------------------------------------------- /test_files/phptests/048.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/048.phpt -------------------------------------------------------------------------------- /test_files/phptests/049.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/049.phpt -------------------------------------------------------------------------------- /test_files/phptests/050.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/050.phpt -------------------------------------------------------------------------------- /test_files/phptests/051.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/051.phpt -------------------------------------------------------------------------------- /test_files/phptests/052.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/052.phpt -------------------------------------------------------------------------------- /test_files/phptests/053.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/053.phpt -------------------------------------------------------------------------------- /test_files/phptests/054.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/054.phpt -------------------------------------------------------------------------------- /test_files/phptests/055.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/055.phpt -------------------------------------------------------------------------------- /test_files/phptests/056.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/056.phpt -------------------------------------------------------------------------------- /test_files/phptests/057.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/057.phpt -------------------------------------------------------------------------------- /test_files/phptests/058.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/058.phpt -------------------------------------------------------------------------------- /test_files/phptests/059.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/059.phpt -------------------------------------------------------------------------------- /test_files/phptests/060.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/060.phpt -------------------------------------------------------------------------------- /test_files/phptests/061.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/061.phpt -------------------------------------------------------------------------------- /test_files/phptests/062.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/062.phpt -------------------------------------------------------------------------------- /test_files/phptests/063.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/063.phpt -------------------------------------------------------------------------------- /test_files/phptests/064.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/064.phpt -------------------------------------------------------------------------------- /test_files/phptests/065.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/065.phpt -------------------------------------------------------------------------------- /test_files/phptests/066.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/066.phpt -------------------------------------------------------------------------------- /test_files/phptests/067.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/067.phpt -------------------------------------------------------------------------------- /test_files/phptests/068.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/068.phpt -------------------------------------------------------------------------------- /test_files/phptests/069.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/069.phpt -------------------------------------------------------------------------------- /test_files/phptests/070.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/070.phpt -------------------------------------------------------------------------------- /test_files/phptests/071.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/071.phpt -------------------------------------------------------------------------------- /test_files/phptests/072.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/072.phpt -------------------------------------------------------------------------------- /test_files/phptests/073.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/073.phpt -------------------------------------------------------------------------------- /test_files/phptests/074.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/074.phpt -------------------------------------------------------------------------------- /test_files/phptests/075.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/075.phpt -------------------------------------------------------------------------------- /test_files/phptests/076.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/076.phpt -------------------------------------------------------------------------------- /test_files/phptests/077.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/077.phpt -------------------------------------------------------------------------------- /test_files/phptests/078.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/078.phpt -------------------------------------------------------------------------------- /test_files/phptests/079.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/079.phpt -------------------------------------------------------------------------------- /test_files/phptests/080.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/080.phpt -------------------------------------------------------------------------------- /test_files/phptests/081.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/081.phpt -------------------------------------------------------------------------------- /test_files/phptests/082.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/082.phpt -------------------------------------------------------------------------------- /test_files/phptests/083.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/083.phpt -------------------------------------------------------------------------------- /test_files/phptests/084.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/084.phpt -------------------------------------------------------------------------------- /test_files/phptests/085.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/085.phpt -------------------------------------------------------------------------------- /test_files/phptests/086.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/086.phpt -------------------------------------------------------------------------------- /test_files/phptests/087.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/087.phpt -------------------------------------------------------------------------------- /test_files/phptests/088.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/088.phpt -------------------------------------------------------------------------------- /test_files/phptests/089.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/089.phpt -------------------------------------------------------------------------------- /test_files/phptests/090.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/090.phpt -------------------------------------------------------------------------------- /test_files/phptests/091.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/091.phpt -------------------------------------------------------------------------------- /test_files/phptests/092.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/092.phpt -------------------------------------------------------------------------------- /test_files/phptests/093.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/093.phpt -------------------------------------------------------------------------------- /test_files/phptests/094.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/094.phpt -------------------------------------------------------------------------------- /test_files/phptests/095.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/095.phpt -------------------------------------------------------------------------------- /test_files/phptests/096.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/096.phpt -------------------------------------------------------------------------------- /test_files/phptests/097.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/097.phpt -------------------------------------------------------------------------------- /test_files/phptests/098.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/098.phpt -------------------------------------------------------------------------------- /test_files/phptests/4mb.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/4mb.rar -------------------------------------------------------------------------------- /test_files/phptests/commented.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/commented.rar -------------------------------------------------------------------------------- /test_files/phptests/corrupted.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/corrupted.rar -------------------------------------------------------------------------------- /test_files/phptests/directories.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/directories.rar -------------------------------------------------------------------------------- /test_files/phptests/dirlink_unix.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/dirlink_unix.rar -------------------------------------------------------------------------------- /test_files/phptests/dirs_and_extra_headers.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/dirs_and_extra_headers.rar -------------------------------------------------------------------------------- /test_files/phptests/encrypted_headers.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/encrypted_headers.rar -------------------------------------------------------------------------------- /test_files/phptests/encrypted_only_files.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/encrypted_only_files.rar -------------------------------------------------------------------------------- /test_files/phptests/garbage.part03.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/garbage.part03.rar -------------------------------------------------------------------------------- /test_files/phptests/latest_winrar.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/latest_winrar.rar -------------------------------------------------------------------------------- /test_files/phptests/linux_rar.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/linux_rar.rar -------------------------------------------------------------------------------- /test_files/phptests/multi.part1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/multi.part1.rar -------------------------------------------------------------------------------- /test_files/phptests/multi.part2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/multi.part2.rar -------------------------------------------------------------------------------- /test_files/phptests/multi.part3.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/multi.part3.rar -------------------------------------------------------------------------------- /test_files/phptests/multi_broken.part1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/multi_broken.part1.rar -------------------------------------------------------------------------------- /test_files/phptests/rar_notrar.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/rar_notrar.rar -------------------------------------------------------------------------------- /test_files/phptests/rar_unicode.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/rar_unicode.rar -------------------------------------------------------------------------------- /test_files/phptests/repeated_name.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/repeated_name.rar -------------------------------------------------------------------------------- /test_files/phptests/secret-crypted-none.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/secret-crypted-none.rar -------------------------------------------------------------------------------- /test_files/phptests/secret-none.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/secret-none.rar -------------------------------------------------------------------------------- /test_files/phptests/solid.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/solid.rar -------------------------------------------------------------------------------- /test_files/phptests/sparsefiles_rar.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/sparsefiles_rar.rar -------------------------------------------------------------------------------- /test_files/phptests/store_method.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/phptests/store_method.rar -------------------------------------------------------------------------------- /test_files/store_empty/added_empty_file.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_empty/added_empty_file.srr -------------------------------------------------------------------------------- /test_files/store_empty/store_empty.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_empty/store_empty.rar -------------------------------------------------------------------------------- /test_files/store_empty/store_empty.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_empty/store_empty.srr -------------------------------------------------------------------------------- /test_files/store_little/recreate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_little/recreate.txt -------------------------------------------------------------------------------- /test_files/store_little/store_little.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_little/store_little.rar -------------------------------------------------------------------------------- /test_files/store_little/store_little.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_little/store_little.srr -------------------------------------------------------------------------------- /test_files/store_little/store_little_srrfile_with_path.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_little/store_little_srrfile_with_path.srr -------------------------------------------------------------------------------- /test_files/store_little/store_little_srrfile_with_path_backslash.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_little/store_little_srrfile_with_path_backslash.srr -------------------------------------------------------------------------------- /test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.part1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.part1.rar -------------------------------------------------------------------------------- /test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.part1.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.part1.srr -------------------------------------------------------------------------------- /test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.part2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.part2.rar -------------------------------------------------------------------------------- /test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.part3.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.part3.rar -------------------------------------------------------------------------------- /test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.sfv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_rr_solid_auth_unicode_new/store_rr_solid_auth.sfv -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/store_split_folder.r00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/store_split_folder.r00 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/store_split_folder.r01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/store_split_folder.r01 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/store_split_folder.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/store_split_folder.rar -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/store_split_folder.sfv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/store_split_folder.sfv -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/store_split_folder.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/store_split_folder.srr -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r00 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r01 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r02 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r03 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r04 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r05 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r06 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r07 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r08 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r09 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r10 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r11 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r12 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r13 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r14 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r15 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.r16 -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_split_folder_old_srrsfv_windows/winrar2.80.rar -------------------------------------------------------------------------------- /test_files/store_split_folder_old_srrsfv_windows/winrar2.80.srr: -------------------------------------------------------------------------------- 1 | iiiReScene .NET 1.2 -------------------------------------------------------------------------------- /test_files/store_utf8_comment/recreate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_utf8_comment/recreate.txt -------------------------------------------------------------------------------- /test_files/store_utf8_comment/store_utf8_comment.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_utf8_comment/store_utf8_comment.rar -------------------------------------------------------------------------------- /test_files/store_utf8_comment/store_utf8_comment.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_utf8_comment/store_utf8_comment.srr -------------------------------------------------------------------------------- /test_files/store_utf8_comment/utf8_filename_added.srr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_utf8_comment/utf8_filename_added.srr -------------------------------------------------------------------------------- /test_files/store_utf8_comment/win_comment.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/store_utf8_comment/win_comment.rar -------------------------------------------------------------------------------- /test_files/txt/ansi_dos.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/ansi_dos.nfo -------------------------------------------------------------------------------- /test_files/txt/ansi_mac.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/ansi_mac.nfo -------------------------------------------------------------------------------- /test_files/txt/ansi_unix.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/ansi_unix.nfo -------------------------------------------------------------------------------- /test_files/txt/checksum.sfv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/checksum.sfv -------------------------------------------------------------------------------- /test_files/txt/checksum_copy.sfv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/checksum_copy.sfv -------------------------------------------------------------------------------- /test_files/txt/empty_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_files/txt/little_file.txt: -------------------------------------------------------------------------------- 1 | Some text. 2 | -------------------------------------------------------------------------------- /test_files/txt/unicode_dos.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/unicode_dos.nfo -------------------------------------------------------------------------------- /test_files/txt/unicode_mac.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/unicode_mac.nfo -------------------------------------------------------------------------------- /test_files/txt/unicode_unix.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/unicode_unix.nfo -------------------------------------------------------------------------------- /test_files/txt/users_manual4.00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/users_manual4.00.txt -------------------------------------------------------------------------------- /test_files/txt/Κείμενο στην ελληνική γλώσσα.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/test_files/txt/Κείμενο στην ελληνική γλώσσα.txt -------------------------------------------------------------------------------- /usenet/_yenc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/_yenc.so -------------------------------------------------------------------------------- /usenet/images/imdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/images/imdb.jpg -------------------------------------------------------------------------------- /usenet/images/kere.ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/images/kere.ws.png -------------------------------------------------------------------------------- /usenet/nzb_age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/nzb_age.py -------------------------------------------------------------------------------- /usenet/nzb_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/nzb_merge.py -------------------------------------------------------------------------------- /usenet/nzb_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/nzb_rename.py -------------------------------------------------------------------------------- /usenet/nzb_sample_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/nzb_sample_extract.py -------------------------------------------------------------------------------- /usenet/nzb_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/nzb_split.py -------------------------------------------------------------------------------- /usenet/nzb_ue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/nzb_ue.py -------------------------------------------------------------------------------- /usenet/nzb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/nzb_utils.py -------------------------------------------------------------------------------- /usenet/pynzb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/pynzb/__init__.py -------------------------------------------------------------------------------- /usenet/pynzb/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/pynzb/base.py -------------------------------------------------------------------------------- /usenet/pynzb/etree_nzb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/pynzb/etree_nzb.py -------------------------------------------------------------------------------- /usenet/pynzb/expat_nzb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/pynzb/expat_nzb.py -------------------------------------------------------------------------------- /usenet/pynzb/lxml_nzb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/pynzb/lxml_nzb.py -------------------------------------------------------------------------------- /usenet/pynzb/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/pynzb/tests.py -------------------------------------------------------------------------------- /usenet/srr_usenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/srr_usenet.py -------------------------------------------------------------------------------- /usenet/srr_usenet_template.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/srr_usenet_template.cfg -------------------------------------------------------------------------------- /usenet/yenc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srrDB/pyrescene/HEAD/usenet/yenc.py --------------------------------------------------------------------------------