Kyoo/transcoder/src/extract.go
2025-01-03 16:42:20 +01:00

84 lines
1.8 KiB
Go

package src
import (
"fmt"
"log"
"os"
"os/exec"
)
const ExtractVersion = 1
func (s *MetadataService) ExtractSubs(info *MediaInfo) (interface{}, error) {
get_running, set := s.extractLock.Start(info.Sha)
if get_running != nil {
return get_running()
}
err := extractSubs(info)
if err != nil {
return set(nil, err)
}
_, err = s.database.Exec(`update info set ver_extract = $2 where sha = $1`, info.Sha, ExtractVersion)
return set(nil, err)
}
func (s *MetadataService) GetAttachmentPath(sha string, is_sub bool, name string) (string, error) {
_, err := s.extractLock.WaitFor(sha)
if err != nil {
return "", err
}
dir := "att"
if is_sub {
dir = "sub"
}
return fmt.Sprintf("%s/%s/%s/%s", Settings.Metadata, sha, dir, name), nil
}
func extractSubs(info *MediaInfo) error {
defer printExecTime("extraction of %s", info.Path)()
attachment_path := fmt.Sprintf("%s/%s/att", Settings.Metadata, info.Sha)
subs_path := fmt.Sprintf("%s/%s/sub", Settings.Metadata, info.Sha)
os.MkdirAll(attachment_path, 0o755)
os.MkdirAll(subs_path, 0o755)
// If there is no subtitles, there is nothing to extract (also fonts would be useless).
if len(info.Subtitles) == 0 {
return nil
}
cmd := exec.Command(
"ffmpeg",
"-dump_attachment:t", "",
// override old attachments
"-y",
"-i", info.Path,
)
cmd.Dir = attachment_path
for _, sub := range info.Subtitles {
if ext := sub.Extension; ext != nil {
if sub.IsExternal {
// skip extraction of external subtitles
continue
}
cmd.Args = append(
cmd.Args,
"-map", fmt.Sprintf("0:s:%d", *sub.Index),
"-c:s", "copy",
fmt.Sprintf("%s/%d.%s", subs_path, *sub.Index, *ext),
)
}
}
log.Printf("Starting extraction with the command: %s", cmd)
cmd.Stdout = nil
err := cmd.Run()
if err != nil {
fmt.Println("Error starting ffmpeg extract:", err)
return err
}
return nil
}