tzxtools


Nametzxtools JSON
Version 1.9.2 PyPI version JSON
download
home_pagehttps://github.com/shred/tzxtools
SummaryA tool collection for processing tzx files
upload_time2023-09-21 16:16:10
maintainer
docs_urlNone
authorRichard Körber
requires_python>=3
licenseGPLv3+
keywords zx-spectrum tzx wav
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # tzxtools

This is a collection of command line tools for processing TZX files.

TZX is a common file format for preserving computer tapes of the ZX Spectrum, but also Amstrad CPC, C64 and MSX. `tzxtools` mainly supports ZX Spectrum TZX files, but raw file operations can be applied on any TZX file. It also supports TSX files, which are mainly used for MSX.

## Features

* Convert your old ZX Spectrum tape recordings into TZX files.
* List, split, merge, and divide the blocks inside TZX files.
* Play back TZX files and load them into the real hardware.
* Extract binary content from TZX blocks.
* Read hex dumps, disassembled Z80 machine code, or ZX Spectrum BASIC code.
* Convert ZX Spectrum screens to PNG files.
* Generate TAP files for ZX Spectrum Next and some emulators.
* Disassembler also supports all undocumented Z80 instructions and Z80N (ZX Spectrum Next) instructions.
* Also supports TSX Kansas City Standard blocks.
* All tools can also read TAP files.

## Installation

All the _tzxtools_ are written in Python 3.

```sh
pip install tzxtools
```

On MacOS X, [PortAudio](http://www.portaudio.com/) needs to be installed before:

```sh
brew install portaudio
pip3 install tzxtools
```

## Tools

* `tzxcat` - Extracts data from a TZX file. Optionally disassembles, hex dumps or converts blocks to PNG.
* `tzxcleanup` - Removes all clutter blocks and leaves a clean TZX file.
* `tzxcut` - Cuts blocks from a TZX file.
* `tzxls` - Lists the contents of a TZX file.
* `tzxmerge` - Concatenates multiple TZX files into one file.
* `tzxplay` - Plays back a TZX file for loading into a real ZX Spectrum.
* `tzxsplit` - Splits a TZX file into separate programs.
* `tzxtap` - Converts a TZX file to TAP file format.
* `tzxwav` - Converts WAV file ZX Spectrum tape recordings to TZX files.

See the [documentation](https://shredzone.org/docs/tzxtools/index.html) for how the tools are used.

## File Format References

The TZX File Format is specified at [World of Spectrum](https://worldofspectrum.net/features/TZXformat.html).

The TSX "ID 4B - Kansas City Standard" block is not a part of the specification. A documentation can be found at the [makeTSX wiki](https://github.com/nataliapc/makeTSX/wiki/Tutorial-How-to-generate-TSX-files#14-the-new-4b-block).

The TAP File Format is described at [Sinclair Wiki](https://sinclair.wiki.zxnet.co.uk/wiki/TAP_format).

## Contribute

* Fork the [Source code at GitHub](https://github.com/shred/tzxtools). Feel free to send pull requests.
* Found a bug? [File a bug report!](https://github.com/shred/tzxtools/issues)

## License

_tzxtools_ is open source software. The source code is distributed under the terms of [GNU General Public License (GPLv3)](https://www.gnu.org/licenses/gpl-3.0.en.html#content).

## Acknowledgements

* I would like to thank all the people who keep the retro computing scene alive.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/shred/tzxtools",
    "name": "tzxtools",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3",
    "maintainer_email": "",
    "keywords": "ZX-Spectrum tzx wav",
    "author": "Richard K\u00f6rber",
    "author_email": "dev@shredzone.de",
    "download_url": "https://files.pythonhosted.org/packages/01/e1/f34e536e7e2fe95a8b31d2926aaa26c4f82125c24960e15c8dfae154ecf3/tzxtools-1.9.2.tar.gz",
    "platform": null,
    "description": "# tzxtools\n\nThis is a collection of command line tools for processing TZX files.\n\nTZX is a common file format for preserving computer tapes of the ZX Spectrum, but also Amstrad CPC, C64 and MSX. `tzxtools` mainly supports ZX Spectrum TZX files, but raw file operations can be applied on any TZX file. It also supports TSX files, which are mainly used for MSX.\n\n## Features\n\n* Convert your old ZX Spectrum tape recordings into TZX files.\n* List, split, merge, and divide the blocks inside TZX files.\n* Play back TZX files and load them into the real hardware.\n* Extract binary content from TZX blocks.\n* Read hex dumps, disassembled Z80 machine code, or ZX Spectrum BASIC code.\n* Convert ZX Spectrum screens to PNG files.\n* Generate TAP files for ZX Spectrum Next and some emulators.\n* Disassembler also supports all undocumented Z80 instructions and Z80N (ZX Spectrum Next) instructions.\n* Also supports TSX Kansas City Standard blocks.\n* All tools can also read TAP files.\n\n## Installation\n\nAll the _tzxtools_ are written in Python 3.\n\n```sh\npip install tzxtools\n```\n\nOn MacOS X, [PortAudio](http://www.portaudio.com/) needs to be installed before:\n\n```sh\nbrew install portaudio\npip3 install tzxtools\n```\n\n## Tools\n\n* `tzxcat` - Extracts data from a TZX file. Optionally disassembles, hex dumps or converts blocks to PNG.\n* `tzxcleanup` - Removes all clutter blocks and leaves a clean TZX file.\n* `tzxcut` - Cuts blocks from a TZX file.\n* `tzxls` - Lists the contents of a TZX file.\n* `tzxmerge` - Concatenates multiple TZX files into one file.\n* `tzxplay` - Plays back a TZX file for loading into a real ZX Spectrum.\n* `tzxsplit` - Splits a TZX file into separate programs.\n* `tzxtap` - Converts a TZX file to TAP file format.\n* `tzxwav` - Converts WAV file ZX Spectrum tape recordings to TZX files.\n\nSee the [documentation](https://shredzone.org/docs/tzxtools/index.html) for how the tools are used.\n\n## File Format References\n\nThe TZX File Format is specified at [World of Spectrum](https://worldofspectrum.net/features/TZXformat.html).\n\nThe TSX \"ID 4B - Kansas City Standard\" block is not a part of the specification. A documentation can be found at the [makeTSX wiki](https://github.com/nataliapc/makeTSX/wiki/Tutorial-How-to-generate-TSX-files#14-the-new-4b-block).\n\nThe TAP File Format is described at [Sinclair Wiki](https://sinclair.wiki.zxnet.co.uk/wiki/TAP_format).\n\n## Contribute\n\n* Fork the [Source code at GitHub](https://github.com/shred/tzxtools). Feel free to send pull requests.\n* Found a bug? [File a bug report!](https://github.com/shred/tzxtools/issues)\n\n## License\n\n_tzxtools_ is open source software. The source code is distributed under the terms of [GNU General Public License (GPLv3)](https://www.gnu.org/licenses/gpl-3.0.en.html#content).\n\n## Acknowledgements\n\n* I would like to thank all the people who keep the retro computing scene alive.\n",
    "bugtrack_url": null,
    "license": "GPLv3+",
    "summary": "A tool collection for processing tzx files",
    "version": "1.9.2",
    "project_urls": {
        "Homepage": "https://github.com/shred/tzxtools",
        "Source": "https://github.com/shred/tzxtools",
        "Tracker": "https://github.com/shred/tzxtools/issues"
    },
    "split_keywords": [
        "zx-spectrum",
        "tzx",
        "wav"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01e1f34e536e7e2fe95a8b31d2926aaa26c4f82125c24960e15c8dfae154ecf3",
                "md5": "035977d3feea0cf23882a07045c89784",
                "sha256": "f07d79ac90d5f12182c68d507988b13aea7206fc7451456372ae7e25f9a19899"
            },
            "downloads": -1,
            "filename": "tzxtools-1.9.2.tar.gz",
            "has_sig": false,
            "md5_digest": "035977d3feea0cf23882a07045c89784",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3",
            "size": 38014,
            "upload_time": "2023-09-21T16:16:10",
            "upload_time_iso_8601": "2023-09-21T16:16:10.601737Z",
            "url": "https://files.pythonhosted.org/packages/01/e1/f34e536e7e2fe95a8b31d2926aaa26c4f82125c24960e15c8dfae154ecf3/tzxtools-1.9.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-21 16:16:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "shred",
    "github_project": "tzxtools",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "tzxtools"
}
        
Elapsed time: 0.12044s