Skip to content
This repository was archived by the owner on Sep 23, 2023. It is now read-only.

Commit fcdab0c

Browse files
committed
Update readme
1 parent 933873e commit fcdab0c

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,20 @@ Simple TAK (Tom's Lossless Audio Kompressor) audio splitter with FFMpeg and FFPr
1212

1313
### How to use
1414
```sh
15-
tak2flac -i "input.tak" [-o "output_path"] [-cue "additional_cue_path"]
15+
tak2flac [-i] "<input_file>" [-o "output_path"] [-cue "additional_cue_path"] [-s] [-v] [-b]
16+
"<input_file>" Input a media file that used for split. It should be .tak format, or other format that
17+
ffmpeg supported and integrated cuesheet data. "-i" are optional.
18+
-cue "file.cue" Input a external cuesheet data file. When your media file are not integrated it.
19+
-s Use newer method to create timelines (but timelines will get shorter for most cases)
20+
-v Verbose output
21+
-b Disable mixed ffmpeg parameter mode (Disable batch mode) //Idk how to explain it right way but in general cases will launch FFMPEG with mixed parameter
22+
// after defines this argument will run FFMPEG in multiple times (according to counts of split).
23+
Example:
24+
tak2flac "media.tak" // Simple way
25+
tak2flac -i "media.tak" -s // Input tak file and use newer method to create timeline
26+
tak2flac "media.flac" -cue "media.cue" -s -b // Input flac file, cuesheet file, disable batch mode and make timelines shorter
27+
tak2flac -i "audio_media.flac" -cue "audio_media.cue" -o "./output" -s -b -v // Input flac file, cuesheet file, define output
28+
//directory, enable almost full verbose, disable batch mode and make timelines shorter
1629
```
1730

1831
### Install

README.zh-Hant.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Cannot understand? Click here to show English readme!](https://github.com/appleneko2001/tak2flac/blob/master/README.md)
1+
[Cannot understand? Click here to show English readme! (but my english could very bad so plz do not be mad)](https://github.com/appleneko2001/tak2flac/blob/master/README.md)
22

33
# tak2flac
44
依靠 FFMpeg 和 FFProbe 的簡易TAK (托馬斯無損音質壓縮編碼) 音訊檔分離器. 關於TAK音訊檔的更多資訊: [維基百科](https://zh.wikipedia.org/wiki/TAK), [Hydrogenaudio 百科](https://wiki.hydrogenaud.io/index.php?title=TAK), [百度百科 (簡體中文)](https://baike.baidu.com/item/Tak)
@@ -12,7 +12,19 @@
1212

1313
### 如何使用
1414
```sh
15-
tak2flac -i "tak檔案位置" [-o "輸出目錄"] [-cue "附加cue檔案位置"]
15+
tak2flac -i "tak檔案位置" [-o "輸出目錄"] [-cue "附加cue檔案位置"] [-s] [-v] [-b]
16+
"<input_file>" 選擇需要被切割的媒體檔案 可以是 tak檔案類型 也可以是FFMPEG支援的 並且已經內置了Cuesheet數據
17+
如果沒有內置也沒關係. "-i" 爲可選
18+
-cue "file.cue" 選擇外部的Cuesheet數據檔案 如果妳的媒體沒有內置Cuesheet數據
19+
-s 使用新的方式建立時間線 (大部分情況下會比舊的方式縮短了一些)
20+
-v 顯示執行過程 (Verbose output)
21+
-b 使用順序執行 (關閉一次性完成工作功能 分序執行)
22+
範例:
23+
tak2flac "media.tak" // 最簡單的方式
24+
tak2flac -i "media.tak" -s // 選擇media.tak, 並使用新的建立時間線方式.
25+
tak2flac "media.flac" -cue "media.cue" -s -b // 選擇media.flac, 並選擇外部cuesheet數據檔案, 關閉"一次性完成"功能避免部分問題
26+
tak2flac -i "audio_media.flac" -cue "audio_media.cue" -o "./output" -s -b -v // 選擇audio_media.flac, 並選擇外部cuesheet數據檔案
27+
// 指定一個輸出目錄 啟用顯示執行過程 啟用新的時間線計算 並且關閉"一次性完成"功能
1628
```
1729

1830
### 安裝

0 commit comments

Comments
 (0)