mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-01-12 23:20:28 -05:00
200 lines
4.9 KiB
Go
200 lines
4.9 KiB
Go
package src
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"log"
|
|
"os/exec"
|
|
"strconv"
|
|
"strings"
|
|
"sync"
|
|
)
|
|
|
|
type Keyframe struct {
|
|
Sha string
|
|
Keyframes []float64
|
|
CanTransmux bool
|
|
IsDone bool
|
|
info *KeyframeInfo
|
|
}
|
|
type KeyframeInfo struct {
|
|
mutex sync.RWMutex
|
|
ready sync.WaitGroup
|
|
listeners []func(keyframes []float64)
|
|
}
|
|
|
|
func (kf *Keyframe) Get(idx int32) float64 {
|
|
kf.info.mutex.RLock()
|
|
defer kf.info.mutex.RUnlock()
|
|
return kf.Keyframes[idx]
|
|
}
|
|
|
|
func (kf *Keyframe) Slice(start int32, end int32) []float64 {
|
|
if end <= start {
|
|
return []float64{}
|
|
}
|
|
kf.info.mutex.RLock()
|
|
defer kf.info.mutex.RUnlock()
|
|
ref := kf.Keyframes[start:end]
|
|
ret := make([]float64, end-start)
|
|
copy(ret, ref)
|
|
return ret
|
|
}
|
|
|
|
func (kf *Keyframe) Length() (int32, bool) {
|
|
kf.info.mutex.RLock()
|
|
defer kf.info.mutex.RUnlock()
|
|
return int32(len(kf.Keyframes)), kf.IsDone
|
|
}
|
|
|
|
func (kf *Keyframe) add(values []float64) {
|
|
kf.info.mutex.Lock()
|
|
defer kf.info.mutex.Unlock()
|
|
kf.Keyframes = append(kf.Keyframes, values...)
|
|
for _, listener := range kf.info.listeners {
|
|
listener(kf.Keyframes)
|
|
}
|
|
}
|
|
|
|
func (kf *Keyframe) AddListener(callback func(keyframes []float64)) {
|
|
kf.info.mutex.Lock()
|
|
defer kf.info.mutex.Unlock()
|
|
kf.info.listeners = append(kf.info.listeners, callback)
|
|
}
|
|
|
|
var keyframes = NewCMap[string, *Keyframe]()
|
|
|
|
func GetKeyframes(sha string, path string) *Keyframe {
|
|
ret, _ := keyframes.GetOrCreate(sha, func() *Keyframe {
|
|
kf := &Keyframe{
|
|
Sha: sha,
|
|
IsDone: false,
|
|
info: &KeyframeInfo{},
|
|
}
|
|
kf.info.ready.Add(1)
|
|
go func() {
|
|
save_path := fmt.Sprintf("%s/%s/keyframes.json", Settings.Metadata, sha)
|
|
if err := getSavedInfo(save_path, kf); err == nil {
|
|
log.Printf("Using keyframes cache on filesystem for %s", path)
|
|
kf.info.ready.Done()
|
|
return
|
|
}
|
|
|
|
err := getKeyframes(path, kf, sha)
|
|
if err == nil {
|
|
saveInfo(save_path, kf)
|
|
}
|
|
}()
|
|
return kf
|
|
})
|
|
ret.info.ready.Wait()
|
|
return ret
|
|
}
|
|
|
|
func getKeyframes(path string, kf *Keyframe, sha string) error {
|
|
defer printExecTime("ffprobe analysis for %s", path)()
|
|
// run ffprobe to return all IFrames, IFrames are points where we can split the video in segments.
|
|
// We ask ffprobe to return the time of each frame and it's flags
|
|
// We could ask it to return only i-frames (keyframes) with the -skip_frame nokey but using it is extremly slow
|
|
// since ffmpeg parses every frames when this flag is set.
|
|
cmd := exec.Command(
|
|
"ffprobe",
|
|
"-loglevel", "error",
|
|
"-select_streams", "v:0",
|
|
"-show_entries", "packet=pts_time,flags",
|
|
"-of", "csv=print_section=0",
|
|
path,
|
|
)
|
|
stdout, err := cmd.StdoutPipe()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = cmd.Start()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
scanner := bufio.NewScanner(stdout)
|
|
|
|
ret := make([]float64, 0, 1000)
|
|
max := 100
|
|
done := 0
|
|
// sometimes, videos can start at a timing greater than 0:00. We need to take that into account
|
|
// and only list keyframes that come after the start of the video (without that, our segments count
|
|
// mismatch and we can have the same segment twice on the stream).
|
|
//
|
|
// We can't hardcode the first keyframe at 0 because the transcoder needs to reference durations of segments
|
|
// To handle this edge case, when we fetch the segment n0, no seeking is done but duration is computed from the
|
|
// first keyframe (instead of 0)
|
|
for scanner.Scan() {
|
|
frame := scanner.Text()
|
|
if frame == "" {
|
|
continue
|
|
}
|
|
|
|
x := strings.Split(frame, ",")
|
|
pts, flags := x[0], x[1]
|
|
|
|
// true if there is no keyframes (e.g. in a file w/o video track)
|
|
if pts == "N/A" {
|
|
break
|
|
}
|
|
// Only take keyframes
|
|
if flags[0] != 'K' {
|
|
continue
|
|
}
|
|
|
|
fpts, err := strconv.ParseFloat(pts, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Before, we wanted to only save keyframes with at least 3s betweens
|
|
// to prevent segments of 0.2s but sometimes, the -f segment muxer discards
|
|
// the segment time and decide to cut at a random keyframe. Having every keyframe
|
|
// handled as a segment prevents that.
|
|
|
|
ret = append(ret, fpts)
|
|
|
|
if len(ret) == max {
|
|
kf.add(ret)
|
|
if done == 0 {
|
|
kf.info.ready.Done()
|
|
} else if done >= 500 {
|
|
max = 500
|
|
}
|
|
done += max
|
|
// clear the array without reallocing it
|
|
ret = ret[:0]
|
|
}
|
|
}
|
|
// If there is less than 2 (i.e. equals 0 or 1 (it happens for audio files with poster))
|
|
if len(ret) < 2 {
|
|
dummy, err := getDummyKeyframes(path, sha)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ret = dummy
|
|
}
|
|
kf.add(ret)
|
|
if done == 0 {
|
|
kf.info.ready.Done()
|
|
}
|
|
kf.IsDone = true
|
|
return nil
|
|
}
|
|
|
|
func getDummyKeyframes(path string, sha string) ([]float64, error) {
|
|
dummyKeyframeDuration := float64(2)
|
|
info, err := GetInfo(path, sha)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
segmentCount := int((float64(info.Duration) / dummyKeyframeDuration) + 1)
|
|
ret := make([]float64, segmentCount)
|
|
for segmentIndex := 0; segmentIndex < segmentCount; segmentIndex += 1 {
|
|
ret[segmentIndex] = float64(segmentIndex) * dummyKeyframeDuration
|
|
}
|
|
return ret, nil
|
|
}
|