You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.4 KiB
67 lines
1.4 KiB
package main |
|
|
|
import ( |
|
"fmt" |
|
"io/ioutil" |
|
"os" |
|
"path" |
|
"path/filepath" |
|
"strconv" |
|
"strings" |
|
|
|
log "github.com/sirupsen/logrus" |
|
) |
|
|
|
func getTempPipePath() string { |
|
return filepath.Join(os.TempDir(), "streampipe.flv") |
|
} |
|
|
|
func fileExists(name string) bool { |
|
if _, err := os.Stat(name); err != nil { |
|
if os.IsNotExist(err) { |
|
return false |
|
} |
|
} |
|
return true |
|
} |
|
|
|
func getRelativePathFromAbsolutePath(path string) string { |
|
pathComponents := strings.Split(path, "/") |
|
variant := pathComponents[len(pathComponents)-2] |
|
file := pathComponents[len(pathComponents)-1] |
|
return filepath.Join(variant, file) |
|
} |
|
|
|
func verifyError(e error) { |
|
if e != nil { |
|
log.Panic(e) |
|
} |
|
} |
|
|
|
func copy(src, dst string) { |
|
input, err := ioutil.ReadFile(src) |
|
if err != nil { |
|
fmt.Println(err) |
|
return |
|
} |
|
|
|
err = ioutil.WriteFile(dst, input, 0644) |
|
if err != nil { |
|
fmt.Println("Error creating", dst) |
|
fmt.Println(err) |
|
return |
|
} |
|
} |
|
|
|
func resetDirectories(configuration Config) { |
|
// Wipe the public, web-accessible hls data directory |
|
os.RemoveAll(configuration.PublicHLSPath) |
|
os.MkdirAll(configuration.PublicHLSPath, 0777) |
|
|
|
// Create private hls data dirs |
|
os.RemoveAll(configuration.PrivateHLSPath) |
|
for index := range configuration.VideoSettings.StreamQualities { |
|
os.MkdirAll(path.Join(configuration.PrivateHLSPath, strconv.Itoa(index)), 0777) |
|
os.MkdirAll(path.Join(configuration.PublicHLSPath, strconv.Itoa(index)), 0777) |
|
} |
|
}
|
|
|