https://github.com/hteumeuleu/pdv
Playdate PDV encoder
https://github.com/hteumeuleu/pdv
playdate playdate-console playdate-sdk
Last synced: 5 months ago
JSON representation
Playdate PDV encoder
- Host: GitHub
- URL: https://github.com/hteumeuleu/pdv
- Owner: hteumeuleu
- License: mit
- Created: 2022-06-28T17:45:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-24T03:30:02.000Z (about 2 years ago)
- Last Synced: 2025-06-22T19:57:50.013Z (7 months ago)
- Topics: playdate, playdate-console, playdate-sdk
- Language: JavaScript
- Homepage: https://pdv.hteumeuleu.com
- Size: 1.87 MB
- Stars: 15
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Playdate Video Encoder
This project is a Playdate Video encoder. `.pdv` files can be played on a Playdate using the [`video` player](https://sdk.play.date/1.12.1/Inside%20Playdate.html#C-graphics.video) in the SDK. You can also run a `.pdv` file using [Playorama](https://github.com/hteumeuleu/playorama), “_A cranky video player for the Playdate_” that I also built.
## Installation
This project runs on Jekyll. (Because… Why not?)
1. **Clone the repository**.
```sh
git clone https://github.com/hteumeuleu/pdv.git
```
See [Cloning a repository](https://help.github.com/en/articles/cloning-a-repository) on GitHub documentation. If you're not familiar with Git or GitHub, I strongly encourage you to try [GitHub's desktop app](https://desktop.github.com/) on macOS, Windows or Linux.
2. **Install Jekyll** and other dependencies.
```sh
bundle install
```
See [Jekyll Installation Guide](https://jekyllrb.com/docs/installation/).
3. **Run Jekyll**.
```sh
bundle exec jekyll serve
```
You can turn on [incremental regeneration](https://jekyllrb.com/docs/configuration/incremental-regeneration/) with the `--incremental` flag.
```sh
bundle exec jekyll serve --incremental
```
4. **Go to [http://localhost:4000](http://localhost:4000)**.