Skip to content

Instantly share code, notes, and snippets.

@maimainoue
Created August 16, 2015 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maimainoue/0255216012ea905813aa to your computer and use it in GitHub Desktop.
Save maimainoue/0255216012ea905813aa to your computer and use it in GitHub Desktop.
Cue埋め込み
Utils.addFlacCueBin = function(flacFileName,cueFileName,cb) {
var command = 'metaflac.exe --set-tag-from-file="CUESHEET='+cueFileName+'" '+flacFileName;
exec(command,function(err,stdout,stderr){
if (err) cb(err);
//console.log(stdout);
cb(err);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment