2019-10-24 07:18:53 +00:00
|
|
|
package manager
|
|
|
|
|
|
|
|
import (
|
2020-07-23 01:56:08 +00:00
|
|
|
"fmt"
|
2019-10-24 07:18:53 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2020-01-31 22:19:15 +00:00
|
|
|
|
2020-07-23 01:56:08 +00:00
|
|
|
"github.com/stashapp/stash/pkg/ffmpeg"
|
2019-10-24 07:18:53 +00:00
|
|
|
"github.com/stashapp/stash/pkg/logger"
|
2020-08-06 01:21:14 +00:00
|
|
|
"github.com/stashapp/stash/pkg/manager/config"
|
2019-10-24 07:18:53 +00:00
|
|
|
"github.com/stashapp/stash/pkg/models"
|
|
|
|
"github.com/stashapp/stash/pkg/utils"
|
|
|
|
)
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
// DestroyScene deletes a scene and its associated relationships from the
|
2021-01-18 01:23:20 +00:00
|
|
|
// database. Returns a function to perform any post-commit actions.
|
|
|
|
func DestroyScene(scene *models.Scene, repo models.Repository) (func(), error) {
|
|
|
|
qb := repo.Scene()
|
|
|
|
mqb := repo.SceneMarker()
|
2019-10-24 07:18:53 +00:00
|
|
|
|
2021-01-18 01:23:20 +00:00
|
|
|
markers, err := mqb.FindBySceneID(scene.ID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2019-10-24 07:18:53 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 01:23:20 +00:00
|
|
|
var funcs []func()
|
|
|
|
for _, m := range markers {
|
|
|
|
f, err := DestroySceneMarker(scene, m, mqb)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
funcs = append(funcs, f)
|
2019-10-24 07:18:53 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 01:23:20 +00:00
|
|
|
if err := qb.Destroy(scene.ID); err != nil {
|
|
|
|
return nil, err
|
2019-10-24 07:18:53 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 01:23:20 +00:00
|
|
|
return func() {
|
|
|
|
for _, f := range funcs {
|
|
|
|
f()
|
|
|
|
}
|
|
|
|
}, nil
|
|
|
|
}
|
2019-10-24 07:18:53 +00:00
|
|
|
|
2021-01-18 01:23:20 +00:00
|
|
|
// DestroySceneMarker deletes the scene marker from the database and returns a
|
|
|
|
// function that removes the generated files, to be executed after the
|
|
|
|
// transaction is successfully committed.
|
|
|
|
func DestroySceneMarker(scene *models.Scene, sceneMarker *models.SceneMarker, qb models.SceneMarkerWriter) (func(), error) {
|
|
|
|
if err := qb.Destroy(sceneMarker.ID); err != nil {
|
|
|
|
return nil, err
|
2019-10-24 07:18:53 +00:00
|
|
|
}
|
2020-01-31 22:19:15 +00:00
|
|
|
|
2021-01-18 01:23:20 +00:00
|
|
|
// delete the preview for the marker
|
|
|
|
return func() {
|
|
|
|
seconds := int(sceneMarker.Seconds)
|
2021-04-11 23:31:33 +00:00
|
|
|
DeleteSceneMarkerFiles(scene, seconds, config.GetInstance().GetVideoFileNamingAlgorithm())
|
2021-01-18 01:23:20 +00:00
|
|
|
}, nil
|
2019-10-24 07:18:53 +00:00
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
// DeleteGeneratedSceneFiles deletes generated files for the provided scene.
|
|
|
|
func DeleteGeneratedSceneFiles(scene *models.Scene, fileNamingAlgo models.HashAlgorithm) {
|
|
|
|
sceneHash := scene.GetHash(fileNamingAlgo)
|
|
|
|
|
|
|
|
if sceneHash == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
markersFolder := filepath.Join(GetInstance().Paths.Generated.Markers, sceneHash)
|
2019-10-24 07:18:53 +00:00
|
|
|
|
|
|
|
exists, _ := utils.FileExists(markersFolder)
|
|
|
|
if exists {
|
|
|
|
err := os.RemoveAll(markersFolder)
|
|
|
|
if err != nil {
|
2020-08-06 01:21:14 +00:00
|
|
|
logger.Warnf("Could not delete folder %s: %s", markersFolder, err.Error())
|
2019-10-24 07:18:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
thumbPath := GetInstance().Paths.Scene.GetThumbnailScreenshotPath(sceneHash)
|
2019-10-24 07:18:53 +00:00
|
|
|
exists, _ = utils.FileExists(thumbPath)
|
|
|
|
if exists {
|
|
|
|
err := os.Remove(thumbPath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", thumbPath, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
normalPath := GetInstance().Paths.Scene.GetScreenshotPath(sceneHash)
|
2019-10-24 07:18:53 +00:00
|
|
|
exists, _ = utils.FileExists(normalPath)
|
|
|
|
if exists {
|
|
|
|
err := os.Remove(normalPath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", normalPath, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
streamPreviewPath := GetInstance().Paths.Scene.GetStreamPreviewPath(sceneHash)
|
2019-10-24 07:18:53 +00:00
|
|
|
exists, _ = utils.FileExists(streamPreviewPath)
|
|
|
|
if exists {
|
|
|
|
err := os.Remove(streamPreviewPath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", streamPreviewPath, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
streamPreviewImagePath := GetInstance().Paths.Scene.GetStreamPreviewImagePath(sceneHash)
|
2019-10-24 07:18:53 +00:00
|
|
|
exists, _ = utils.FileExists(streamPreviewImagePath)
|
|
|
|
if exists {
|
|
|
|
err := os.Remove(streamPreviewImagePath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", streamPreviewImagePath, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
transcodePath := GetInstance().Paths.Scene.GetTranscodePath(sceneHash)
|
2019-10-24 07:18:53 +00:00
|
|
|
exists, _ = utils.FileExists(transcodePath)
|
|
|
|
if exists {
|
|
|
|
// kill any running streams
|
|
|
|
KillRunningStreams(transcodePath)
|
|
|
|
|
|
|
|
err := os.Remove(transcodePath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", transcodePath, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
spritePath := GetInstance().Paths.Scene.GetSpriteImageFilePath(sceneHash)
|
2019-10-24 07:18:53 +00:00
|
|
|
exists, _ = utils.FileExists(spritePath)
|
|
|
|
if exists {
|
|
|
|
err := os.Remove(spritePath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", spritePath, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
vttPath := GetInstance().Paths.Scene.GetSpriteVttFilePath(sceneHash)
|
2019-10-24 07:18:53 +00:00
|
|
|
exists, _ = utils.FileExists(vttPath)
|
|
|
|
if exists {
|
|
|
|
err := os.Remove(vttPath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", vttPath, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
// DeleteSceneMarkerFiles deletes generated files for a scene marker with the
|
|
|
|
// provided scene and timestamp.
|
|
|
|
func DeleteSceneMarkerFiles(scene *models.Scene, seconds int, fileNamingAlgo models.HashAlgorithm) {
|
|
|
|
videoPath := GetInstance().Paths.SceneMarkers.GetStreamPath(scene.GetHash(fileNamingAlgo), seconds)
|
|
|
|
imagePath := GetInstance().Paths.SceneMarkers.GetStreamPreviewImagePath(scene.GetHash(fileNamingAlgo), seconds)
|
2021-09-15 02:27:05 +00:00
|
|
|
screenshotPath := GetInstance().Paths.SceneMarkers.GetStreamScreenshotPath(scene.GetHash(fileNamingAlgo), seconds)
|
2020-04-09 22:39:41 +00:00
|
|
|
|
|
|
|
exists, _ := utils.FileExists(videoPath)
|
|
|
|
if exists {
|
|
|
|
err := os.Remove(videoPath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", videoPath, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exists, _ = utils.FileExists(imagePath)
|
|
|
|
if exists {
|
|
|
|
err := os.Remove(imagePath)
|
|
|
|
if err != nil {
|
2021-09-15 02:27:05 +00:00
|
|
|
logger.Warnf("Could not delete file %s: %s", imagePath, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exists, _ = utils.FileExists(screenshotPath)
|
|
|
|
if exists {
|
|
|
|
err := os.Remove(screenshotPath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", screenshotPath, err.Error())
|
2020-04-09 22:39:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
// DeleteSceneFile deletes the scene video file from the filesystem.
|
2019-10-24 07:18:53 +00:00
|
|
|
func DeleteSceneFile(scene *models.Scene) {
|
|
|
|
// kill any running encoders
|
|
|
|
KillRunningStreams(scene.Path)
|
|
|
|
|
|
|
|
err := os.Remove(scene.Path)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warnf("Could not delete file %s: %s", scene.Path, err.Error())
|
|
|
|
}
|
2020-01-31 22:19:15 +00:00
|
|
|
}
|
2020-07-23 01:56:08 +00:00
|
|
|
|
|
|
|
func GetSceneFileContainer(scene *models.Scene) (ffmpeg.Container, error) {
|
|
|
|
var container ffmpeg.Container
|
|
|
|
if scene.Format.Valid {
|
|
|
|
container = ffmpeg.Container(scene.Format.String)
|
|
|
|
} else { // container isn't in the DB
|
|
|
|
// shouldn't happen, fallback to ffprobe
|
2021-10-14 23:39:48 +00:00
|
|
|
ffprobe := GetInstance().FFProbe
|
|
|
|
tmpVideoFile, err := ffprobe.NewVideoFile(scene.Path, false)
|
2020-07-23 01:56:08 +00:00
|
|
|
if err != nil {
|
Errorlint sweep + minor linter tweaks (#1796)
* Replace error assertions with Go 1.13 style
Use `errors.As(..)` over type assertions. This enables better use of
wrapped errors in the future, and lets us pass some errorlint checks
in the process.
The rewrite is entirely mechanical, and uses a standard idiom for
doing so.
* Use Go 1.13's errors.Is(..)
Rather than directly checking for error equality, use errors.Is(..).
This protects against error wrapping issues in the future.
Even though something like sql.ErrNoRows doesn't need the wrapping, do
so anyway, for the sake of consistency throughout the code base.
The change almost lets us pass the `errorlint` Go checker except for
a missing case in `js.go` which is to be handled separately; it isn't
mechanical, like these changes are.
* Remove goconst
goconst isn't a useful linter in many cases, because it's false positive
rate is high. It's 100% for the current code base.
* Avoid direct comparison of errors in recover()
Assert that we are catching an error from recover(). If we are,
check that the error caught matches errStop.
* Enable the "errorlint" checker
Configure the checker to avoid checking for errorf wraps. These are
often false positives since the suggestion is to blanket wrap errors
with %w, and that exposes the underlying API which you might not want
to do.
The other warnings are good however, and with the current patch stack,
the code base passes all these checks as well.
* Configure rowserrcheck
The project uses sqlx. Configure rowserrcheck to include said package.
* Mechanically rewrite a large set of errors
Mechanically search for errors that look like
fmt.Errorf("...%s", err.Error())
and rewrite those into
fmt.Errorf("...%v", err)
The `fmt` package is error-aware and knows how to call err.Error()
itself.
The rationale is that this is more idiomatic Go; it paves the
way for using error wrapping later with %w in some sites.
This patch only addresses the entirely mechanical rewriting caught by
a project-side search/replace. There are more individual sites not
addressed by this patch.
2021-10-12 03:03:08 +00:00
|
|
|
return ffmpeg.Container(""), fmt.Errorf("error reading video file: %v", err)
|
2020-07-23 01:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
container = ffmpeg.MatchContainer(tmpVideoFile.Container, scene.Path)
|
|
|
|
}
|
|
|
|
|
|
|
|
return container, nil
|
|
|
|
}
|
|
|
|
|
2021-03-11 01:51:42 +00:00
|
|
|
func includeSceneStreamPath(scene *models.Scene, streamingResolution models.StreamingResolutionEnum, maxStreamingTranscodeSize models.StreamingResolutionEnum) bool {
|
|
|
|
// convert StreamingResolutionEnum to ResolutionEnum so we can get the min
|
|
|
|
// resolution
|
|
|
|
convertedRes := models.ResolutionEnum(streamingResolution)
|
|
|
|
|
|
|
|
minResolution := int64(convertedRes.GetMinResolution())
|
|
|
|
sceneResolution := scene.GetMinResolution()
|
|
|
|
|
|
|
|
// don't include if scene resolution is smaller than the streamingResolution
|
|
|
|
if sceneResolution != 0 && sceneResolution < minResolution {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we always allow everything, then return true
|
|
|
|
if maxStreamingTranscodeSize == models.StreamingResolutionEnumOriginal {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert StreamingResolutionEnum to ResolutionEnum
|
|
|
|
maxStreamingResolution := models.ResolutionEnum(maxStreamingTranscodeSize)
|
|
|
|
return int64(maxStreamingResolution.GetMinResolution()) >= minResolution
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeStreamEndpoint(streamURL string, streamingResolution models.StreamingResolutionEnum, mimeType, label string) *models.SceneStreamEndpoint {
|
|
|
|
return &models.SceneStreamEndpoint{
|
|
|
|
URL: fmt.Sprintf("%s?resolution=%s", streamURL, streamingResolution.String()),
|
|
|
|
MimeType: &mimeType,
|
|
|
|
Label: &label,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetSceneStreamPaths(scene *models.Scene, directStreamURL string, maxStreamingTranscodeSize models.StreamingResolutionEnum) ([]*models.SceneStreamEndpoint, error) {
|
2020-07-23 01:56:08 +00:00
|
|
|
if scene == nil {
|
|
|
|
return nil, fmt.Errorf("nil scene")
|
|
|
|
}
|
|
|
|
|
|
|
|
var ret []*models.SceneStreamEndpoint
|
|
|
|
mimeWebm := ffmpeg.MimeWebm
|
|
|
|
mimeHLS := ffmpeg.MimeHLS
|
|
|
|
mimeMp4 := ffmpeg.MimeMp4
|
|
|
|
|
|
|
|
labelWebm := "webm"
|
|
|
|
labelHLS := "HLS"
|
|
|
|
|
|
|
|
// direct stream should only apply when the audio codec is supported
|
|
|
|
audioCodec := ffmpeg.MissingUnsupported
|
|
|
|
if scene.AudioCodec.Valid {
|
|
|
|
audioCodec = ffmpeg.AudioCodec(scene.AudioCodec.String)
|
|
|
|
}
|
2021-03-31 03:36:11 +00:00
|
|
|
|
|
|
|
// don't care if we can't get the container
|
|
|
|
container, _ := GetSceneFileContainer(scene)
|
2020-07-23 01:56:08 +00:00
|
|
|
|
2021-04-11 23:31:33 +00:00
|
|
|
if HasTranscode(scene, config.GetInstance().GetVideoFileNamingAlgorithm()) || ffmpeg.IsValidAudioForContainer(audioCodec, container) {
|
2020-07-23 01:56:08 +00:00
|
|
|
label := "Direct stream"
|
|
|
|
ret = append(ret, &models.SceneStreamEndpoint{
|
|
|
|
URL: directStreamURL,
|
|
|
|
MimeType: &mimeMp4,
|
|
|
|
Label: &label,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// only add mkv stream endpoint if the scene container is an mkv already
|
|
|
|
if container == ffmpeg.Matroska {
|
|
|
|
label := "mkv"
|
|
|
|
ret = append(ret, &models.SceneStreamEndpoint{
|
|
|
|
URL: directStreamURL + ".mkv",
|
|
|
|
// set mkv to mp4 to trick the client, since many clients won't try mkv
|
|
|
|
MimeType: &mimeMp4,
|
|
|
|
Label: &label,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-10-22 04:02:27 +00:00
|
|
|
hls := models.SceneStreamEndpoint{
|
|
|
|
URL: directStreamURL + ".m3u8",
|
|
|
|
MimeType: &mimeHLS,
|
|
|
|
Label: &labelHLS,
|
|
|
|
}
|
|
|
|
ret = append(ret, &hls)
|
|
|
|
|
|
|
|
// WEBM quality transcoding options
|
|
|
|
// Note: These have the wrong mime type intentionally to allow jwplayer to selection between mp4/webm
|
|
|
|
webmLabelFourK := "WEBM 4K (2160p)" // "FOUR_K"
|
|
|
|
webmLabelFullHD := "WEBM Full HD (1080p)" // "FULL_HD"
|
2021-03-11 01:51:42 +00:00
|
|
|
webmLabelStandardHD := "WEBM HD (720p)" // "STANDARD_HD"
|
2020-10-22 04:02:27 +00:00
|
|
|
webmLabelStandard := "WEBM Standard (480p)" // "STANDARD"
|
|
|
|
webmLabelLow := "WEBM Low (240p)" // "LOW"
|
|
|
|
|
|
|
|
// Setup up lower quality transcoding options (MP4)
|
|
|
|
mp4LabelFourK := "MP4 4K (2160p)" // "FOUR_K"
|
|
|
|
mp4LabelFullHD := "MP4 Full HD (1080p)" // "FULL_HD"
|
2021-03-11 01:51:42 +00:00
|
|
|
mp4LabelStandardHD := "MP4 HD (720p)" // "STANDARD_HD"
|
2020-10-22 04:02:27 +00:00
|
|
|
mp4LabelStandard := "MP4 Standard (480p)" // "STANDARD"
|
|
|
|
mp4LabelLow := "MP4 Low (240p)" // "LOW"
|
|
|
|
|
2021-03-11 01:51:42 +00:00
|
|
|
var webmStreams []*models.SceneStreamEndpoint
|
|
|
|
var mp4Streams []*models.SceneStreamEndpoint
|
|
|
|
|
|
|
|
webmURL := directStreamURL + ".webm"
|
|
|
|
mp4URL := directStreamURL + ".mp4"
|
|
|
|
|
|
|
|
if includeSceneStreamPath(scene, models.StreamingResolutionEnumFourK, maxStreamingTranscodeSize) {
|
|
|
|
webmStreams = append(webmStreams, makeStreamEndpoint(webmURL, models.StreamingResolutionEnumFourK, mimeMp4, webmLabelFourK))
|
|
|
|
mp4Streams = append(mp4Streams, makeStreamEndpoint(mp4URL, models.StreamingResolutionEnumFourK, mimeMp4, mp4LabelFourK))
|
2020-10-22 04:02:27 +00:00
|
|
|
}
|
|
|
|
|
2021-03-11 01:51:42 +00:00
|
|
|
if includeSceneStreamPath(scene, models.StreamingResolutionEnumFullHd, maxStreamingTranscodeSize) {
|
|
|
|
webmStreams = append(webmStreams, makeStreamEndpoint(webmURL, models.StreamingResolutionEnumFullHd, mimeMp4, webmLabelFullHD))
|
|
|
|
mp4Streams = append(mp4Streams, makeStreamEndpoint(mp4URL, models.StreamingResolutionEnumFullHd, mimeMp4, mp4LabelFullHD))
|
2020-10-22 04:02:27 +00:00
|
|
|
}
|
|
|
|
|
2021-03-11 01:51:42 +00:00
|
|
|
if includeSceneStreamPath(scene, models.StreamingResolutionEnumStandardHd, maxStreamingTranscodeSize) {
|
|
|
|
webmStreams = append(webmStreams, makeStreamEndpoint(webmURL, models.StreamingResolutionEnumStandardHd, mimeMp4, webmLabelStandardHD))
|
|
|
|
mp4Streams = append(mp4Streams, makeStreamEndpoint(mp4URL, models.StreamingResolutionEnumStandardHd, mimeMp4, mp4LabelStandardHD))
|
2020-10-22 04:02:27 +00:00
|
|
|
}
|
|
|
|
|
2021-03-11 01:51:42 +00:00
|
|
|
if includeSceneStreamPath(scene, models.StreamingResolutionEnumStandard, maxStreamingTranscodeSize) {
|
|
|
|
webmStreams = append(webmStreams, makeStreamEndpoint(webmURL, models.StreamingResolutionEnumStandard, mimeMp4, webmLabelStandard))
|
|
|
|
mp4Streams = append(mp4Streams, makeStreamEndpoint(mp4URL, models.StreamingResolutionEnumStandard, mimeMp4, mp4LabelStandard))
|
2020-10-22 04:02:27 +00:00
|
|
|
}
|
|
|
|
|
2021-03-11 01:51:42 +00:00
|
|
|
if includeSceneStreamPath(scene, models.StreamingResolutionEnumLow, maxStreamingTranscodeSize) {
|
|
|
|
webmStreams = append(webmStreams, makeStreamEndpoint(webmURL, models.StreamingResolutionEnumLow, mimeMp4, webmLabelLow))
|
|
|
|
mp4Streams = append(mp4Streams, makeStreamEndpoint(mp4URL, models.StreamingResolutionEnumLow, mimeMp4, mp4LabelLow))
|
2020-10-22 04:02:27 +00:00
|
|
|
}
|
|
|
|
|
2021-03-11 01:51:42 +00:00
|
|
|
ret = append(ret, webmStreams...)
|
|
|
|
ret = append(ret, mp4Streams...)
|
|
|
|
|
2020-07-23 01:56:08 +00:00
|
|
|
defaultStreams := []*models.SceneStreamEndpoint{
|
|
|
|
{
|
|
|
|
URL: directStreamURL + ".webm",
|
|
|
|
MimeType: &mimeWebm,
|
|
|
|
Label: &labelWebm,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = append(ret, defaultStreams...)
|
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2020-08-06 01:21:14 +00:00
|
|
|
// HasTranscode returns true if a transcoded video exists for the provided
|
|
|
|
// scene. It will check using the OSHash of the scene first, then fall back
|
|
|
|
// to the checksum.
|
|
|
|
func HasTranscode(scene *models.Scene, fileNamingAlgo models.HashAlgorithm) bool {
|
2020-07-23 01:56:08 +00:00
|
|
|
if scene == nil {
|
2020-08-06 01:21:14 +00:00
|
|
|
return false
|
2020-07-23 01:56:08 +00:00
|
|
|
}
|
2020-08-06 01:21:14 +00:00
|
|
|
|
|
|
|
sceneHash := scene.GetHash(fileNamingAlgo)
|
|
|
|
if sceneHash == "" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
transcodePath := instance.Paths.Scene.GetTranscodePath(sceneHash)
|
|
|
|
ret, _ := utils.FileExists(transcodePath)
|
|
|
|
return ret
|
2020-07-23 01:56:08 +00:00
|
|
|
}
|