1
1
mirror of https://github.com/wader/fq.git synced 2024-10-26 20:06:29 +03:00
fq/doc/demo.sh

39 lines
1.1 KiB
Bash
Raw Normal View History

2021-10-10 03:17:29 +03:00
#!/bin/bash
FQ="$1"
c() {
echo -e "\x1b[97m# $1\x1b[0m"
}
s() {
echo "\$ $1"
2021-10-10 18:24:43 +03:00
sh -c "${1/fq/$FQ -o unicode=true -C}"
2021-10-10 03:17:29 +03:00
}
2021-11-22 16:16:59 +03:00
c "Overview of mp3 file"
2021-10-10 03:17:29 +03:00
s "fq . file.mp3"
echo
2021-11-22 16:16:59 +03:00
c "Show ID3v2 tag inside mp3 file"
2021-10-10 03:17:29 +03:00
s "fq '.headers[0]' file.mp3"
echo
c "Show encoder software used"
s "fq -r '.frames[0].tags.encoder | tovalue' 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
2021-11-22 16:16:59 +03:00
c "Extract PNG file"
2021-10-10 03:17:29 +03:00
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'"