Pa-software community
Help, support and conversation
Welcome! ( login | register )
 
  Forum » ID3 Editor » MP3 file problems » id3edcmd.exe usage format in ...
 

Pages: << prev 1 next >>
id3edcmd.exe usage format in Windows
This member is currently offline Troy Mitchell
Newbie


Member Level

Group: Members
Posts: 1
Joined: Jun 19, 2011

Add Troy Mitchell to your buddy list Send an email to Troy Mitchell Reply with a quote from this post Go to the top of the page

I bought ID3 Editor today, for use in Windows, and am having issues with the Command Line tool id3edcmd.exe...

When I use the following command, it results in no error, but it does not seem that the images are being embeded into the MP3's.
"C:\Program Files\Pa-software\Windows ID3 Editor\id3edcmd.exe" -ir *.mp3 Folder.jpg

I've tried to follow the limited documentation supplied in the help file (see below).  I don't quite understand the intention without an actual example.
Usage: id3edcmd [options] file [file]...

Your assistance on this matter would be greatly appreciated.

Posted Jun 19, 2011, 8:27 am
This member is currently offline jamesrae
Member


Member Level

Group: Moderators
Posts: 63
Joined: Dec 13, 2008

Add jamesrae to your buddy list Send an email to jamesrae Send a personal messsage to jamesrae Reply with a quote from this post Go to the top of the page

I am afraid the problem is because wildcards are not allowed in the command line editor file names. You need to use a batch script to get the files and then pass them to the editor e.g.:

@echo off
for /r "drive:\path\dir" %%g in (*.mp3) do (
rem echo %%~nxg
"C:\Program Files\Pa-software\Windows ID3 Editor\id3edcmd.exe" -ir "%%~nxg" Folder.jpg
)
pause

Where 'drive:\path\dir' is where the MP3 files reside.
.........................
James Rae
Pa-software support

Posted Jun 20, 2011, 11:19 am
Pages: << prev 1 next >>