Menu

Tree [825795] master v1.1.2 v1.1.2x v1.1.3 /
 History

HTTPS access


File Date Author Commit
 .vscode 2022-02-26 Martin Barker Martin Barker [f8738f] V1.1.1 (#19)
 Resources 2021-03-28 Martin Barker Martin Barker [1b11d3] Readme 1.0 wip (#6)
 build 2022-12-31 martinbarker martinbarker [a2ecea] header img
 rendertune-audio-tests 2022-02-26 Martin Barker Martin Barker [f8738f] V1.1.1 (#19)
 scripts 2021-03-23 Martin Barker Martin Barker [44a147] Auto update and stores (#5)
 src 2022-02-26 Martin Barker Martin Barker [f8738f] V1.1.1 (#19)
 .DS_Store 2022-02-26 Martin Barker Martin Barker [f8738f] V1.1.1 (#19)
 .gitignore 2021-05-03 Martin Barker Martin Barker [882fee] Ffmpeg: removed --nonfree and built ffmpeg for ...
 Info.plist 2021-03-10 martinbarker martinbarker [044ed0] appx build attempt
 LICENSE 2020-12-25 martinbarker martinbarker [f4c491] windows up to date, includes open link fix? was...
 README.md 2022-12-31 martinbarker martinbarker [825795] header img
 buildffmpeg.sh 2021-05-03 Martin Barker Martin Barker [882fee] Ffmpeg: removed --nonfree and built ffmpeg for ...
 child.plist 2021-03-10 martinbarker martinbarker [044ed0] appx build attempt
 electron-builder.yml 2021-03-23 Martin Barker Martin Barker [44a147] Auto update and stores (#5)
 embedded.provisionprofile 2022-02-26 Martin Barker Martin Barker [f8738f] V1.1.1 (#19)
 entitlements.mac.plist 2021-03-23 Martin Barker Martin Barker [44a147] Auto update and stores (#5)
 entitlements.mas.inherit.plist 2021-03-18 martinbarker martinbarker [46d75a] mac v0.2.1
 entitlements.mas.plist 2021-03-18 martinbarker martinbarker [46d75a] mac v0.2.1
 ffmpeg backup.txt 2022-02-26 Martin Barker Martin Barker [f8738f] V1.1.1 (#19)
 loginhelper.plist 2021-03-10 martinbarker martinbarker [044ed0] appx build attempt
 main.js 2022-02-26 Martin Barker Martin Barker [f8738f] V1.1.1 (#19)
 package-lock.json 2022-02-26 Martin Barker Martin Barker [f8738f] V1.1.1 (#19)
 package.json 2022-02-26 Martin Barker Martin Barker [f8738f] V1.1.1 (#19)
 parent.plist 2021-03-10 martinbarker martinbarker [044ed0] appx build attempt
 signmasscript.sh 2021-03-23 Martin Barker Martin Barker [44a147] Auto update and stores (#5)

Read Me

RenderTune is a free open-source program for mac/win/linux to combine audio + image file(s) into video files that can be uploaded to YouTube.

screenshot

Tutorial Video (Click To Watch):

RenderTune Tutorial Video

Download

RenderTune is available for free on the Mac Apple Store, Windows Store, and Linux Snap Store. Click any of the below badges to view the store page.

Mac App Store
MS badge
Snapcraft

If you want to download RenderTune without using the above stores, you can download RenderTune from the most recent Github Release.

Features:

  • Use the Tracklist Table to reorder your songs by sorting the columns or dragging each song manually.
    screenshot
  • Concatenate multiple audio files to play one after another in a single outputted video file.
  • Batch render multiple videos at once and customize options for each video.
    screenshot
  • Video Render Options:
    screenshot

    • Image: Change which image to render your video with.
    • Padding: Add white or black padding to the outputted video frame.
      screenshot
    • Resolution: Change outputted video resolution.
    • Output Dir: Change outputted video location.
  • Use the "Renders" popup to track the progress of your video renders.
    screenshot

  • Supported audio formats: mp3, flac, wav, m4a, oog, wma, aiff. Supported image formats: png, jpeg, jpg, webp.
  • Outputted video format: mp4.

How to run RenderTune locally:

  • Clone this repo and cd into the folder.
  • Run npm i and npm i -g electron if you haven't already installed electron globally.
  • If you are on windows I recommend using command prompt, as that can launch electron apps fine, while Windows Linux Subsystem has troubles launching electron apps.
  • If you are on a mac using the mac terminal, download brew and ffmpeg-mac/ by following the instructions below.
  • Download and setup ffmpeg-mac/ folder (instructions below).
  • Run electron . to start the program.

How to install ffmpeg locally for mac (ffmpeg-mac/)

  • If you are on mac; run sh buildffmpeg.sh to create the ffmpeg-mac/ folder and statically build a version of ffmpeg that can be sandboxed and distributed to the mac apple store (mas).
  • Verify your local ffmpeg-mac/ folder has no dynamic libraries by running this command:
    otool -L ffmpeg-mac/ffmpeg | grep /usr/local
  • If any files show up after running this command, delete or move those files, redownload the ffmpeg-mac/ folder, then run the 'otool' command again to verify there are no dynamic libraries in your local ffmpeg-mac/ folder.

Releasing a new version:

  • Change version number in package.json (this is the bare minimum to change).
  • Make sure you have local vars set for GH_TOKEN, APPLEID, and APPLEIDPASS.
  • Mac:
    • Download and setup ffmpeg-mac/ folder.
    • Mac Apple Store: Change package.json mac build targets to only contain "mas", verify the paths in signmasscript.sh are correct, then build & sign by running the command npm run build-mas. Upload the outputted RenderTune.pkg file to App Store Connect using Transporter, then create a new Mac Apple Store submission for review.
    • Mac .dmg Installer (auto-updates): Change package.json build targets to contain "dmg", "zip", remove the RenderTune.pkg file we crated for MAS in the above step if it exists since we don't want to package that inside our build. Build & publish by running the command npm run build-mac-publish.
  • Windows:
    • To sign a .appx build for the Windows Store you need to have a Windows SDK downloaded: https://www.electronjs.org/docs/tutorial/windows-store-guide.
    • Windows Installer (auto-updates), Windows Portable, and Windows Store .appx: On Windows, make sure env vars are set by running echo %GH_TOKEN% in command prompt terminal, build nsis-web/portable/appx targets with the command npm run build-win-publish. To sign the Windows Store Build, make sure you are on a computer with the powershell electron-windows-store requirements, and then run the following powershell command to generate a signed .appx file that you can upload to the Microsoft Store review system:
electron-windows-store --input-directory C:\Users\marti\Documents\projects\rendertune-v0.5.0\dist\win-unpacked --output-directory C:\Users\marti\Documents\projects\RenderTuneAppx --package-version 0.5.0.0 --package-name RenderTune --package-display-name 'RenderTune' --publisher-display-name 'martinbarker' --identity-name 1845martinbarker.digify -a C:\Users\marti\Documents\projects\rendertune-v0.5.0\Resources\
  • Linux:
    • Login to snap store from terminal: $ snapcraft login. Build & publish linux builds for snap and AppImage: $ npm run build-linux-publish. This will output a .snap file in the dist/ folder that you can upload using the command: $ snapcraft upload --release=stable dist/rendertune_0.3.23_amd64.snap (make sure your .snap filename is correct).
  • Once all of the following steps have been followed, there should be a new RenderTune version drafted on GitHub with files uploaded for Mac, Windows, and Linux.

Roadmap:

This list is of future updates / improvements I plan to make for RenderTune (If you can think of any features you would like, contact me and I will include them in the roadmap)
- UI Improvements: Better render status options, more efficent code.
- Add API to electron app so you can trigger renders using POST route.
- New Feature: Append/Prepend video file to video we are rendering (Add MP4 intro/outro, add MP3 intro/outro)
- New Feautre: Record, split, export and tag audio files.
- New Feature: Upload files to YouTube / tag

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.