mirror of
https://github.com/wader/fq.git
synced 2024-11-24 11:16:09 +03:00
36 lines
993 B
Bash
Executable File
36 lines
993 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FQ="$1"
|
|
|
|
c() {
|
|
echo -e "\x1b[97m# $1\x1b[0m"
|
|
}
|
|
|
|
s() {
|
|
echo "\$ $1"
|
|
sh -c "${1/fq/$FQ -o unicode=true -C}"
|
|
}
|
|
|
|
c "Overview of mp3 file"
|
|
s "fq . file.mp3"
|
|
echo
|
|
c "Show ID3v2 tag inside mp3 file"
|
|
s "fq '.headers[0]' file.mp3"
|
|
echo
|
|
c "Decode at two offsets as mp3_frame and show bitrate"
|
|
s "fq -d raw 'tobytes[0xb79,0xc49:] | mp3_frame.header.bitrate' file.mp3"
|
|
echo
|
|
c "Extract PNG file"
|
|
s "fq '.headers[].frames[] | select(.id == \"APIC\")?.picture | tobits' file.mp3 >file.png"
|
|
s "file file.png"
|
|
rm -f file.png
|
|
echo
|
|
c "Resolution of embedded PNG cover art as YAML"
|
|
s "fq -r '.headers[0].frames[] | grep_by(.id == \"APIC\") | grep_by(.type == \"IHDR\") | {res: {width, height}} | toyaml' file.mp3"
|
|
#echo
|
|
c "Add query parameter to URL"
|
|
s "echo 'http://host?a=b' | fq -Rr 'fromurl | .query.b = \"a b c\" | tourl'"
|
|
echo
|
|
c "Extract JSON and base64 encoded query parameter p"
|
|
s "echo 'https://host?p=eyJhIjoiaGVsbG8ifQ%3D%3D' | fq -R 'fromurl.query.p | frombase64 | fromjson'"
|