Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eddex/jumpcutter-android
An Android app and a webserver for automatic video edits!
https://github.com/eddex/jumpcutter-android
android hslu
Last synced: about 1 month ago
JSON representation
An Android app and a webserver for automatic video edits!
- Host: GitHub
- URL: https://github.com/eddex/jumpcutter-android
- Owner: eddex
- License: mit
- Created: 2019-04-15T15:23:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-17T13:55:47.000Z (over 5 years ago)
- Last Synced: 2024-08-04T11:01:50.330Z (5 months ago)
- Topics: android, hslu
- Language: Java
- Size: 971 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hslu - eddex/jumpcutter-android - project code (HSLU Modules / MOBPRO)
README
# Jumpcutter Android
An Android app and a server for automatic video edits!
## Android app
The app lets the user select a video to edit and configure all settings needed by the server.
It is also possible to share a video or YouTube link with the app.
All converted videos can be viewed in a list.## Server
The server is used to edit the video by using [carykh's jumpcutter](https://github.com/carykh/jumpcutter) which is included as a submodule in this repository.requires ffmpeg: `sudo apt install ffmpeg`
clone with submodule: `git clone --recurse-submodules https://github.com/eddex/jumpcutter-android.git`
more info on submodules: https://gist.github.com/gitaarik/8735255
### using docker
build image: `$ docker build -t jumpcutter-server:latest .` (in server directory)
run container: `$ docker run -d -p 80:80 jumpcutter-server:latest`
run with mapped upload folder: `docker run -dp 80:80 -v /:/tmp/upload jumpcutter-server`