mirror of
https://github.com/wader/fq.git
synced 2024-12-01 02:30:32 +03:00
13 lines
725 B
Plaintext
13 lines
725 B
Plaintext
# ffmpeg -f lavfi -i sine -t 10ms test.mp3
|
|
/test.mp3:
|
|
$ 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| |
|
|
0x00|49 44 33 04 00 00 00 00 00 23 54 53 53 45 00 00|ID3......#TSSE..|
|
|
0x10|00 0f 00 00 03 4c 61 76 |.....Lav |
|
|
$ 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| |
|
|
0xe0| fa | . |
|
|
$ fq -d mp3 '.frames[1].header.layer._bytes | hexdump' /test.mp3
|
|
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f| |
|
|
0x0|40 |@ |
|