
flac
List of commands for flac:
-
flac:tldr:2803f flac: Test a FLAC file for the correct encoding.$ flac -t ${filename-flac}try on your machineexplain this command
-
flac:tldr:5e564 flac: Encode a WAV file to FLAC (this will create a FLAC file in the same location as the WAV file).$ flac ${filename-wav}try on your machineexplain this command
-
flac:tldr:80fca flac: Decode a FLAC file to WAV, specifying the output file.$ flac -d -o ${path-to-output-wav} ${filename-flac}try on your machineexplain this command
-
flac:tldr:f4e0c flac: Encode a WAV file to FLAC, specifying the output file.$ flac -o ${path-to-output-flac} ${filename-wav}try on your machineexplain this command