Skip to content

vgmtools OS X binaries

Technical discussion about the VGM format, and all the software you need to handle VGM files.

Moderator: Staff

  • User avatar
  • bmos Offline
  • Posts: 92
  • Joined: 2014-07-14, 22:54:26

vgmtools OS X binaries

Post by bmos »

a few ppl have asked me for OS X binaries of vgmtools so figured i'd just post them here. based off current svn.
Attachments
vgmtools_macos_20160802.zip
(231.77 KiB) Downloaded 248 times
Last edited by bmos on 2016-08-08, 7:21:31, edited 1 time in total.
  • User avatar
  • bmos Offline
  • Posts: 92
  • Joined: 2014-07-14, 22:54:26

shell scripts for OS X / linux (bash)

Post by bmos »

rewrote vampirefrog's bat files for bash to save some time.

all2txt.sh

Code: Select all

#!/bin/bash
for i in *.vgm; do ./vgm2txt $i 0 0; done
also can use for vgm_cmp, vgm_sro, etc.

m3u.sh

Code: Select all

#!/bin/bash
for i in *.vgm; do export filename=${PWD##*/};
ls -1 *.vgm > "${filename}".m3u; done
  • User avatar
  • bmos Offline
  • Posts: 92
  • Joined: 2014-07-14, 22:54:26

Post by bmos »

updated binaries for macos based on last commit on 2016-08-02
Post Reply