From 75ce4244d599ab6fb81fda50b42413ceffc0d9d7 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Tue, 9 Jan 2018 13:56:49 +0530 Subject: [PATCH] flac: match conventions - Removed preceding / from file paths - Made the output flag to be consistent on both examples -Clarified the output file location in the first example --- pages/common/flac.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/flac.md b/pages/common/flac.md index cd68dd5692..b7aa4d3990 100644 --- a/pages/common/flac.md +++ b/pages/common/flac.md @@ -2,18 +2,18 @@ > Encodes, decodes and tests flac files. -- Encode a wav file to flac, writing to /path/to/file.flac: +- Encode a wav file to flac (this will create a flac file in the same location as the wav file): -`flac {{/path/to/file.wav}}` +`flac {{path/to/file.wav}}` - Encode a wav file to flac, specifying the output file: -`flac -o {{/path/to/output.flac}} {{/path/to/file.wav}}` +`flac -o {{path/to/output.flac}} {{path/to/file.wav}}` - Decode a flac file to wav, specifying the output file: -`flac -d --output-name {{/path/to/output.wav}} {{/path/to/file.flac}}` +`flac -d -o {{path/to/output.wav}} {{path/to/file.flac}}` - Test a flac file for correct encoding: -`flac -t {{/path/to/file.flac}}` +`flac -t {{path/to/file.flac}}`