ittiam-systems / libmpegh

MPEG-H 3D Audio Low Complexity Profile Decoder. Encoder: https://github.com/ittiam-systems/libmpeghe
http://www.ittiam.com/
BSD 3-Clause Clear License
86 stars 19 forks source link

Input File: File Open Failed #67

Closed Mrsergo22 closed 11 months ago

Mrsergo22 commented 11 months ago

Hi! Am I doing something wrong? cause I keep getting this error This is the command i use: E:\DECODER>ia_mpeghd_testbench.exe for %f in (E:/decoder/album/*.m4a); do ia_mpeghd_testbench -ifile:"%f" -ofile:"%~dpnf.wav" -ifile:%f

my decoder is in this directory : E:\decoder\ files i want to decode in this directory : E:\decoder\album Снимок экрана 2023-08-02 161341

Mrsergo22 commented 11 months ago

i'm trying to decode a full folder

sandeshvenkatesh commented 11 months ago

Hi,

There seems to be an issue with the syntax used. Can you try below command:

E:\DECODER>for %f in (.\album*.m4a); do ia_mpeghd_testbench.exe -ifile:"%f" -ofile:"%~nf.wav"

The decoded outputs get generated in "E:\decoder".

PS: there is a backslash before *.m4a which is not visible because of syntax things. Ensure to put proper path.