tube/media/video.go

78 lines
1.5 KiB
Go
Raw Normal View History

2019-06-26 22:02:31 +03:00
package media
import (
"os"
"path"
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
"github.com/dhowden/tag"
)
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
2019-06-26 22:02:31 +03:00
}
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 = name
}
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
}
// Add thumbnail (if exists)
pic := m.Picture()
if pic != nil {
v.Thumb = pic.Data
v.ThumbType = pic.MIMEType
2019-06-26 22:02:31 +03:00
}
return v, nil
}