https://github.com/jef/zap2xml
📺 Automate zap2it TV guide to XMLTV
https://github.com/jef/zap2xml
Last synced: about 1 year ago
JSON representation
📺 Automate zap2it TV guide to XMLTV
- Host: GitHub
- URL: https://github.com/jef/zap2xml
- Owner: jef
- License: mit
- Created: 2021-04-24T20:08:24.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-17T00:35:46.000Z (almost 5 years ago)
- Last Synced: 2025-04-02T07:11:26.719Z (about 1 year ago)
- Language: Perl
- Size: 20.5 KB
- Stars: 49
- Watchers: 3
- Forks: 10
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# zap2xml
See [zap2xml](https://web.archive.org/web/20200426004001/zap2xml.awardspace.info/) for original Perl script and guidance for the configuration file.
## Docker
| Tag | Description |
|---|---|
| latest | Stable zap2xml releases |
| nightly | HEAD zap2xml release |
### Compose
```yaml
version: '3'
services:
zap2xml:
container_name: zap2xml
image: ghcr.io/jef/zap2xml:latest
environment:
OPT_ARGS: >-
-I -D -C /config/.zap2xmlrc
SLEEPTIME: 43200 # 12 hours in seconds
TZ: America/New_York
volumes:
- /path/to/appdata/zap2xml:/config
- /path/to/appdata/xmltv:/xmltv # nice for mapping other drives to this that may use xmltv.xml
restart: unless-stopped
```