2022-09-22 19:32:13 +03:00
|
|
|
$ fq -h mp3
|
|
|
|
mp3: MP3 file decoder
|
|
|
|
|
|
|
|
Options
|
|
|
|
=======
|
|
|
|
|
|
|
|
max_sync_seek=32768 Max byte distance to next sync
|
|
|
|
max_unique_header_configs=5 Max number of unique frame header configs allowed
|
2023-01-25 17:27:31 +03:00
|
|
|
max_unknown=50 Max percent (0-100) unknown bits
|
2022-09-22 19:32:13 +03:00
|
|
|
|
|
|
|
Decode examples
|
|
|
|
===============
|
|
|
|
|
|
|
|
# Decode file as mp3
|
|
|
|
$ fq -d mp3 . file
|
|
|
|
# Decode value as mp3
|
|
|
|
... | mp3
|
|
|
|
# Decode file using mp3 options
|
2023-01-25 17:27:31 +03:00
|
|
|
$ fq -d mp3 -o max_sync_seek=32768 -o max_unique_header_configs=5 -o max_unknown=50 . file
|
2022-09-22 19:32:13 +03:00
|
|
|
# Decode value as mp3
|
2023-01-25 17:27:31 +03:00
|
|
|
... | mp3({max_sync_seek:32768,max_unique_header_configs:5,max_unknown:50})
|
2022-09-22 19:32:13 +03:00
|
|
|
|