Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: APE to WAVPACK with CUE embedded (Read 12599 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

APE to WAVPACK with CUE embedded

Reply #25
When I try to convert flac with this catch:
Quote
@ECHO OFF

REM FLAC2WV
FLAC -d %1 "%~dpn1.wav"

REM If the return code is 0 encode, otherwise report the error
IF %ERRORLEVEL% EQU 0 (
  WAVPACK -mhx3  -w "Cuesheet=@%~dpn1.cue" "%~dpn1.wav" "%~dpn1.wv"
  IF %ERRORLEVEL% EQU 0 (
    ECHO Successful conversion
  ) ELSE (
    ECHO Problem encoding
  )
) ELSE (
  ECHO Problem decoding
)

PAUSE

I receive this error (decoding to wav:
Quote
0:FKAC_STREAM_DECODER_ERROR_STATUS_LOST_SYNC

Can somebody help me?