mirror of
https://github.com/AynaLivePlayer/miaosic.git
synced 2026-05-06 07:35:50 +08:00
8 lines
106 B
Go
8 lines
106 B
Go
package tag
|
|
|
|
import "io"
|
|
|
|
func ReadMP4Tags(r io.ReadSeeker) (Metadata, error) {
|
|
return fallbackRead(r)
|
|
}
|