From 9f57fda4add8f1f3f5bd9797b620d491c6befbd1 Mon Sep 17 00:00:00 2001 From: Sean Bannister Date: Wed, 5 Mar 2014 04:38:28 +1000 Subject: [PATCH] Specify ID3 v2.3 tags when writing as Windows doesn't read ID3 v2.4. While it'd be nice to give the user the option to choose which they can use in the future it's rare that people "really" want v2.4 tags. --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 9ebcebb..c211277 100644 --- a/index.js +++ b/index.js @@ -120,6 +120,8 @@ function spawnWrite(src, dst, data) { src, // input from src path "-map", "0", + "-id3v2_version", + "3", "-codec", "copy", ];