mirror of
https://github.com/wader/fq.git
synced 2024-11-24 03:05:22 +03:00
f4480c6fe5
interp: Refactor format help and also include options interp: Add -o name=@path to load file content as value (not documented yet, might change) interp,decode: Expose decode out value as _out (might change) interp: Refactor foramts.jq into format_{decode,func,include}.jq interp: Refactor torepr into _format_func for generic format function overloading interp: Refactor -o options parsing to be more generic and collect unknowns options to be used as format options decode of decode alises func for format overloaded functions include for format specific jq functions (also _help, torepr etc) flac_frame: Add bits_per_sample option mp3: Add max_unique_header_config and max_sync_seek options mp4: Add decode_samples and allow_truncate options avc_au: Has length_size option hevc_au: Has length_size option aac_frame: Has object_typee option doc: Rewrite format doc generation, less hack more jq
27 lines
883 B
Plaintext
27 lines
883 B
Plaintext
# <mp4 root> | mp4_path(".moov.trak[1]") -> box
|
|
# box -> | mp4_path -> ".moov.trak[1]"
|
|
# box -> | mp4_path(<mp4 root>) -> ".moov.trak[1]"
|
|
def mp4_path(p):
|
|
_decode_value(
|
|
( if format != "mp4" then error("not mp4 format") end
|
|
| _tree_path(.boxes; .type; p)
|
|
)
|
|
);
|
|
def mp4_path:
|
|
( . as $c
|
|
| format_root
|
|
| mp4_path($c)
|
|
);
|
|
|
|
def _mp4__help:
|
|
{ notes: "Support `mp4_path`",
|
|
examples: [
|
|
{comment: "Lookup box decode value using `mp4_path`", expr: "mp4_path(\".moov.trak[1]\")"},
|
|
{comment: "Return `mp4_path` string for a box decode value", expr: "grep_by(.type == \"trak\") | mp4_path"}
|
|
],
|
|
links: [
|
|
{title: "ISO/IEC base media file format (MPEG-4 Part 12)", url: "https://en.wikipedia.org/wiki/ISO/IEC_base_media_file_format"},
|
|
{title: "Quicktime file format", url: "https://developer.apple.com/standards/qtff-2001.pdf"}
|
|
]
|
|
};
|