14 lines
277 B
Go
14 lines
277 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"live-streamer/constant"
|
||
|
"path/filepath"
|
||
|
"slices"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func IsSupportedVideo(filename string) bool {
|
||
|
ext := strings.ToLower(filepath.Ext(filename))
|
||
|
return slices.Contains(constant.SupportedStreamingFormats, strings.TrimPrefix(ext, "."))
|
||
|
}
|