https://github.com/ttskch/audio2video
Converting an audio file to a simple video file.
https://github.com/ttskch/audio2video
Last synced: about 14 hours ago
JSON representation
Converting an audio file to a simple video file.
- Host: GitHub
- URL: https://github.com/ttskch/audio2video
- Owner: ttskch
- License: mit
- Created: 2016-06-20T15:24:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-09-02T08:36:51.000Z (over 7 years ago)
- Last Synced: 2025-04-02T21:43:28.008Z (10 months ago)
- Language: HTML
- Homepage: http://audio2video.me
- Size: 126 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# audio2video
[](https://travis-ci.org/ttskch/audio2video)
Source code of http://audio2video.me
## See also
CLI version: [ttskch/audio2video-cli](https://github.com/ttskch/audio2video-cli)
## For developers
### Requirements
* PHP 7.1.3+
* npm
* Docker
### Installation
```bash
$ docker build . -t {tag}
$ composer install
```
### Running
```bash
$ docker run -p 8888:8888 -v $(pwd):/docroot {tag}
```
Then browse http://localhost:8888
#### Debugging in Docker container
```bash
$ docker run -p 8888:8888 -v $(pwd):/docroot -it {tag} sh
# default user is a non-root user named "nonroot"
% whoami
nonroot
# can sudo
% sudo whoami
root
```