tube/media/video.go

124 lines
2.5 KiB
Go
Raw Permalink Normal View History

2019-06-26 22:02:31 +03:00
package media
import (
"fmt"
"io/ioutil"
"log"
2019-06-26 22:02:31 +03:00
"os"
"path"
"path/filepath"
2019-06-29 01:20:52 +03:00
"strings"
2019-06-29 06:50:59 +03:00
"time"
2019-06-26 22:02:31 +03:00
2024-12-23 19:54:59 +03:00
"surdeus.su/serv/tube/utils"
"github.com/dhowden/tag"
"gopkg.in/yaml.v3"
2019-06-26 22:02:31 +03:00
)
2019-06-30 01:02:05 +03:00
// Video represents metadata for a single video.
2019-06-26 22:02:31 +03:00
type Video struct {
ID string
Title string
Album string
Description string
Thumb []byte
ThumbType string
Modified string
2019-06-29 19:16:01 +03:00
Size int64
Path string
2019-06-29 06:50:59 +03:00
Timestamp time.Time
Views int64
2019-06-26 22:02:31 +03:00
}
func getTagsFromYml(v *Video) error {
ymlFileName := fmt.Sprintf("%s.yml", strings.TrimSuffix(v.Path, filepath.Ext(v.Path)))
if !utils.FileExists(ymlFileName) {
return nil
}
ymlFile, err := ioutil.ReadFile(ymlFileName)
if err != nil {
return err
}
err = yaml.Unmarshal(ymlFile, v)
if err != nil {
return err
}
log.Println("Got tags from yml for", v.Path)
return nil
}
2019-06-30 01:02:05 +03:00
// ParseVideo parses a video file's metadata and returns a Video.
func ParseVideo(p *Path, name string) (*Video, error) {
pth := path.Join(p.Path, name)
f, err := os.Open(pth)
2019-06-26 22:02:31 +03:00
if err != nil {
return nil, err
}
2019-08-09 00:13:55 +03:00
defer f.Close()
2019-06-29 01:20:52 +03:00
info, err := f.Stat()
if err != nil {
return nil, err
}
2019-06-29 19:16:01 +03:00
size := info.Size()
2019-06-29 06:50:59 +03:00
timestamp := info.ModTime()
modified := timestamp.Format("2006-01-02 03:04 PM")
2019-06-29 01:20:52 +03:00
// ID is name without extension
idx := strings.LastIndex(name, ".")
if idx == -1 {
idx = len(name)
}
id := name[:idx]
if len(p.Prefix) > 0 {
// if there's a prefix prepend it to the ID
id = path.Join(p.Prefix, name[:idx])
}
2019-06-26 22:02:31 +03:00
m, err := tag.ReadFrom(f)
if err != nil {
return nil, err
}
2019-06-29 01:20:52 +03:00
title := m.Title()
// Default title is filename
if title == "" {
title = strings.TrimSuffix(name, filepath.Ext(name))
2019-06-29 01:20:52 +03:00
}
2019-06-26 22:02:31 +03:00
v := &Video{
2019-06-29 01:20:52 +03:00
ID: id,
Title: title,
2019-06-26 22:02:31 +03:00
Album: m.Album(),
Description: m.Comment(),
2019-06-29 01:20:52 +03:00
Modified: modified,
2019-06-29 19:16:01 +03:00
Size: size,
Path: pth,
2019-06-29 06:50:59 +03:00
Timestamp: timestamp,
2019-06-26 22:02:31 +03:00
}
// read yml if exists
err = getTagsFromYml(v)
if err != nil {
log.Println("Failed to read yml for", v.Path)
}
// Add thumbnail from embedded tags (if exists)
pic := m.Picture()
if pic != nil {
v.Thumb = pic.Data
v.ThumbType = pic.MIMEType
}
// Add thumbnail from external file (if exists)
if utils.FileExists(fmt.Sprintf("%s.jpg", strings.TrimSuffix(pth, filepath.Ext(pth)))) {
data, err := ioutil.ReadFile(fmt.Sprintf("%s.jpg", strings.TrimSuffix(pth, filepath.Ext(pth))))
if err != nil {
log.Println("Failed to read thumbnail file for", v.Path)
return nil, err
}
v.Thumb = data
v.ThumbType = "image/jpeg"
2019-06-26 22:02:31 +03:00
}
2019-06-26 22:02:31 +03:00
return v, nil
}