1
1
mirror of https://github.com/wader/fq.git synced 2024-11-24 11:16:09 +03:00
fq/pkg/interp/testdata/hexdump.fqtest

12 lines
805 B
Plaintext
Raw Normal View History

2020-06-08 03:29:51 +03:00
# ffmpeg -f lavfi -i sine -t 10ms test.mp3
2021-08-13 17:40:28 +03:00
$ fq -d mp3 '._bits[0:(16+8)*8] | hexdump' /test.mp3
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
0x00|49 44 33 04 00 00 00 00 00 23 54 53 53 45 00 00|ID3......#TSSE..|.: raw bits 0x0-0x17.7 (24)
2020-06-08 03:29:51 +03:00
0x10|00 0f 00 00 03 4c 61 76 |.....Lav |
2021-08-13 17:40:28 +03:00
$ fq -d mp3 '.frames[1].header.layer | hexdump' /test.mp3
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
0xe0| fb | . |.: raw bits 0xe4.5-0xe4.6 (0.2)
2021-08-13 17:40:28 +03:00
$ fq -d mp3 '.frames[1].header.layer._bytes | hexdump' /test.mp3
2021-10-05 23:26:05 +03:00
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|
0xe0| fb | . |.: raw bits 0xe4.5-0xe4.6 (0.2)