mirror of https://bitbucket.org/ausocean/av.git
commit
f45cab62f0
|
@ -31,6 +31,7 @@ const (
|
|||
H264SID = 27
|
||||
H265SID = 36
|
||||
MJPEGSID = 28
|
||||
PCMSID = 191
|
||||
ADPCMSID = 192
|
||||
)
|
||||
|
||||
|
@ -43,9 +44,11 @@ func SIDToMIMEType(id int) (string, error) {
|
|||
return "video/h265", nil
|
||||
case MJPEGSID:
|
||||
return "video/x-motion-jpeg", nil
|
||||
case PCMSID:
|
||||
return "audio/pcm", nil
|
||||
case ADPCMSID:
|
||||
return "audio/adpcm", nil
|
||||
default:
|
||||
return "", errors.New("unkown stream ID")
|
||||
return "", errors.New("unknown stream ID")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue