feat: add tips for QMC with STag suffix
This commit is contained in:
parent
9647ca15fd
commit
7b37e4dd3c
@ -91,7 +91,7 @@ func (d *Decoder) Validate() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d Decoder) GetFileExt() string {
|
func (d *Decoder) GetFileExt() string {
|
||||||
return d.fileExt
|
return d.fileExt
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -105,20 +105,18 @@ func (d *Decoder) searchKey() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if string(buf) == "QTag" {
|
if string(buf) == "QTag" {
|
||||||
if err := d.readRawMetaQTag(); err != nil {
|
return d.readRawMetaQTag()
|
||||||
return err
|
} else if string(buf) == "STag" {
|
||||||
}
|
return errors.New("qmc: file with 'STag' suffix doesn't contains media key")
|
||||||
} else {
|
} else {
|
||||||
size := binary.LittleEndian.Uint32(buf)
|
size := binary.LittleEndian.Uint32(buf)
|
||||||
if size < 0x300 && size != 0 {
|
if size < 0x300 && size != 0 {
|
||||||
return d.readRawKey(int64(size))
|
return d.readRawKey(int64(size))
|
||||||
} else {
|
}
|
||||||
// try to use default static cipher
|
// try to use default static cipher
|
||||||
d.audioLen = int(fileSizeM4 + 4)
|
d.audioLen = int(fileSizeM4 + 4)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *Decoder) readRawKey(rawKeyLen int64) error {
|
func (d *Decoder) readRawKey(rawKeyLen int64) error {
|
||||||
|
Loading…
Reference in New Issue
Block a user