I need help please
Is there anyway to point mp3tag to a batch file to replace missing tracks automatically with correct info while tagging my albums
EXAMPLE
- Martin Solveig And The Cataracs Feat. Kyle - Hey Now
- Capital Cities - Safe And Sound
- Madcon Feat. Kelly Rowland - One Life (Bodybangers Remix)
- Mike Candys Feat. Evelyn And Tony T - Everybody
- Carlprit - Here We Go (Allez Allez)
i want to point it to .bat file to make a 0mb mp3 file and fill with correct info so it looks like this automatically while using online sources
- Martin Solveig And The Cataracs Feat. Kyle - Hey Now
- Capital Cities - Safe And Sound
- Madcon Feat. Kelly Rowland - One Life (Bodybangers Remix)
- Mike Candys Feat. Evelyn And Tony T - Everybody
- Carlprit - Here We Go (Allez Allez)
here is the code for creating a 0mb mp3 file if anyone needs it to help me out on this one
@echo off & setlocal enableextensions
set testfile_="** FILE IS MISSING **.mp3"
if exist %testfile_% goto _nocreate %Don't destroy an existing file%
copy nul %testfile_%>nul
:_nocreate
call :TestForZeroFile %testfile_% isZeroFile_
echo %testfile_% is a zero-byte file = %isZeroFile_%
endlocal & goto :EOF
::
:: ====================================
:TestForZeroFile
setlocal enableextensions
set file_=%1
for %%f in (%file_%) do set size_=%%~zf
set return_=false
if %size_% EQU 0 set return_=true
endlocal & set %2=%return_% & goto :EOF