14 lines
277 B
Go
Executable File
14 lines
277 B
Go
Executable File
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, "."))
|
|
}
|