Skip to content

Commit

Permalink
Build with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dashroshan committed Nov 9, 2023
1 parent 1f88776 commit 09621ca
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 6 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/jDeploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will build a Java project with Maven and bundle them as native app installers with jDeploy
# See https://www.jdeploy.com for more information.

name: jDeploy CI with Maven

on:
push:
branches: ['*']
tags: ['*']

jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Build App Installer Bundles
uses: shannah/jdeploy@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# FrameFusion

FrameFusion is a video utility tool to resize, compress, trim, and convert videos in mp4, mov, avi, flv, m4v, and webm formats.
FrameFusion is a video utility tool built with JavaFX and FFMPEG to resize resolution, compress using quality, trim duration, and convert videos in MP4, MOV, AVI, FLV, M4V, and WEBM formats.

### [Download pre-built FrameFusion EXE](https://drive.google.com/file/d/10Y14B4L-YtE6gxA3_0gejahMXvZ-QbsS/view?usp=sharing)
### [🔗 Download pre-built exe](https://drive.google.com/file/d/10Y14B4L-YtE6gxA3_0gejahMXvZ-QbsS/view?usp=sharing)

## Screenshots

Expand All @@ -14,15 +14,14 @@ FrameFusion is a video utility tool to resize, compress, trim, and convert video

### Setup

- Install Maven from here: https://maven.apache.org/download.cgi
- Add Maven to windows PATH.
- Clone this repository.
- Install Maven from here: https://maven.apache.org/download.cgi and add its **bin** folder to windows PATH. [View guide here.](https://helpdeskgeek.com/windows-10/add-windows-path-environment-variable)
- Install Maven for Java extension for VSCode.
- Clone this repo.
- Download ffmpeg: https://drive.google.com/file/d/1BgL22p1T_4ktdaAa9Qo4VMb2JIwpKoMq and put the 2 EXEs in `src/main/resources/com/dashroshan`

### Run

- In VSCode expand MAVEN -> framefusion -> plugins -> javafx.
- In VSCode expand MAVEN framefusion plugins javafx.
- Click compile, then run.

### Build EXE
Expand Down
Binary file modified screenshot_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshot_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 09621ca

Please sign in to comment.