{"id":19687217,"url":"https://github.com/trinitronx/audio-cuefile-parserplus","last_synced_at":"2026-05-13T11:34:21.480Z","repository":{"id":710057,"uuid":"356747","full_name":"trinitronx/Audio-Cuefile-ParserPlus","owner":"trinitronx","description":"A better CUE sheet parser written as a perl module.  Supports Read/Write access and full CUE file specification.","archived":false,"fork":false,"pushed_at":"2020-02-02T22:01:31.000Z","size":32,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-27T09:12:23.111Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.lyraphase.com","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trinitronx.png","metadata":{"files":{"readme":"README","changelog":"Changes","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2009-11-01T05:26:32.000Z","updated_at":"2020-02-02T22:01:30.000Z","dependencies_parsed_at":"2022-07-18T05:21:32.039Z","dependency_job_id":null,"html_url":"https://github.com/trinitronx/Audio-Cuefile-ParserPlus","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/trinitronx/Audio-Cuefile-ParserPlus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trinitronx%2FAudio-Cuefile-ParserPlus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trinitronx%2FAudio-Cuefile-ParserPlus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trinitronx%2FAudio-Cuefile-ParserPlus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trinitronx%2FAudio-Cuefile-ParserPlus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trinitronx","download_url":"https://codeload.github.com/trinitronx/Audio-Cuefile-ParserPlus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trinitronx%2FAudio-Cuefile-ParserPlus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32980812,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T11:31:52.688Z","status":"ssl_error","status_checked_at":"2026-05-13T11:31:52.072Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T18:33:24.918Z","updated_at":"2026-05-13T11:34:21.452Z","avatar_url":"https://github.com/trinitronx.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"NAME\n    Audio::Cuefile::ParserPlus - Class to read, write \u0026 manipulate CUE files\n\nSYNOPSIS\n      use Audio::Cuefile::ParserPlus;\n      Class to parse a cuefile and access all available data within.\n      Can print track list, output cue files, or return a Audio::Cuefile::ParserPlus object\n\nDESCRIPTION\n      Audio::Cuefile::ParserPlus was built using the CUE sheet file specification \n      found at: \n        http://digitalx.org/cuesheetsyntax.php\n      The internal data structure organizes the CUE sheet commands mainly by what are \n      considered 'global' attributes and those specific to a single 'TRACK'.\n      To print track specific attributes, use the printTracks() method.\n\nUSAGE\n     use Audio::Cuefile::ParserPlus;\n\n     $filepath = 'filename.cue';\n\n     # Create an empty object \u0026 read a file with readCUE()\n     my $cuefile = new Audio::Cuefile::ParserPlus();\n     $cuefile-\u003ereadCUE($filepath);\n     # OR specify the file in the constructor:\n     my $other_cuefile = new Audio::Cuefile::ParserPlus($filepath);\n \n     # Print the track data\n     $cuefile-\u003eprintTracks();\n     $other_cuefile-\u003eprintTracks();\n\nCLASS DOCUMENTATION\n     Here is some more detailed information about using the class:\n\n  Static Package Variables\n     @AUDIO::Cuefile::ParserPlus::CUESHEET_COMMANDS\n            - Array containing track specific cuesheet \n              commands in the order we want to print them \n              in (using printTracks)\n     $AUDIO::Cuefile::ParserPlus::DEBUG\n            - Turn debugging output on\n\n  readCUE\n     Usage     : $cuefileparser-\u003ereadCUE('path/to/cuefile.cue');\n     Purpose   : Gives the parse a CUE sheet to read \u0026 parse, sets $self-\u003eCUEfilepath if not defined\n     Returns   : Nothing! (Sets all member variables however)\n     Argument  : filepath = path to a CUE sheet file. (optional)\n               : if no filepath given, uses $cuefileparser-\u003eCUEfilepath if defined\n     Throws    : IOException::PathNotFound\n     Comment   : After using readCUE(), you may access the member variables\n               : that it sets as public properties for ease of use.\n\n    See Also :\n\n  printTracks\n     Usage     : $cuefileparser-\u003eprintTracks();\n     Purpose   : Print the parsed cue sheet @tracks array of hashes\n     Returns   : Nothing! (prints output to console)\n     Constraint: Must have loaded a CUE sheet with readCUE first if you \n               : expect any output!\n     Throws    : Nothing\n     Comment   : \n               :\n\n    See Also :\n\n  openStripCUE\n     Usage     : Meant for private use within Audio::Cuefile::ParserPlus\n     Purpose   : Utility function to open \u0026 read entire CUE file, stripping\n               : any REM comments or blank lines.\n     Returns   : String containing the stripped CUE file.\n     Argument  : filepath = path to a CUE sheet file.\n     Throws    : IOException::Read\n     Comment   : \n               :\n\n    See Also :\n\n  writeCUE\n     Usage     : $cuefileparser-\u003ewriteCUE('path/to/cuefile.cue');\n     Purpose   : Writes out a cuefile from the internal data structure.\n               : Uses $filepath if defined \u0026 writable, else writes \n                       : to the current path stored in $self-\u003eCUEfilepath\n     Returns   : Nothing!\n     Argument  : filepath = path to a CUE sheet file. (optional)\n               : if no filepath given, uses $cuefileparser-\u003eCUEfilepath if defined\n     Throws    : IOException::Write, IOException::PathNotFound\n     Comment   : Will overwrite the file stored in $filepath if defined \u0026 \n               : writable, else $self-\u003eCUEfilepath if defined\n\n    See Also :\n\nBUGS\n     Doesn't support multi-file CUE sheets yet! (TODO!)\n\n     Need INDEX 00 (pregap support)\n     Need INDEX \u003e1 (subindex support)\n\nSUPPORT\n    This module is provided as is, use at your own risk. If you *really*\n    need help, then you can email me at: jcuzella@lyraphase.com, or my\n    website http://www.lyraphase.com/\n\nAUTHOR\n        James Cuzella\n        CPAN ID: JCUZELLA\n        .:[ HoTSC ]:.\n        jcuzella@lyraphase.com\n        http://www.lyraphase.com/\n\nCOPYRIGHT\n    This program is free software; you can redistribute it and/or modify it\n    under the same terms as Perl itself.\n\n    The full text of the license can be found in the LICENSE file included\n    with this module.\n\nSEE ALSO\n    perl(1).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrinitronx%2Faudio-cuefile-parserplus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrinitronx%2Faudio-cuefile-parserplus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrinitronx%2Faudio-cuefile-parserplus/lists"}