erico
11-21-2006, 05:57 PM
Does anyone know of a way to "automatically tag" real audio files so that it wouldn't require human intervention to do the tagging?
Example Tags:
--artist "Company Name Here"
--title "My Test Title"
--year "2006"
--genre "News"
--comment "This is a test comment"
Script example: (but most likely not the one you would use)
for /f "tokens=1-4 delims=/.- " %%A in ('date /t') do (set Dow=%%A&set MM=%%B&set DD=%%C&set YYYY=%%D)
tag C:\Audio\Tagged\*.mp3 --artist "Company Name Here" --year %YYYY% --genre "News" --title "News Story ABC Here" --comment "This is a test comment"
It would have to be a solution that would work well with Real audio software. Preferably from a batch file. Not sure.
Your thoughts on this would be much appreciated.
Thanks
Example Tags:
--artist "Company Name Here"
--title "My Test Title"
--year "2006"
--genre "News"
--comment "This is a test comment"
Script example: (but most likely not the one you would use)
for /f "tokens=1-4 delims=/.- " %%A in ('date /t') do (set Dow=%%A&set MM=%%B&set DD=%%C&set YYYY=%%D)
tag C:\Audio\Tagged\*.mp3 --artist "Company Name Here" --year %YYYY% --genre "News" --title "News Story ABC Here" --comment "This is a test comment"
It would have to be a solution that would work well with Real audio software. Preferably from a batch file. Not sure.
Your thoughts on this would be much appreciated.
Thanks