Compare commits

..

1 Commits

Author SHA1 Message Date
Tocho Tochev 1f5666e348 Add files to LFS 2024-05-31 23:17:53 +03:00
12 changed files with 11 additions and 4275 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
*.qet filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text

View File

@ -1,19 +0,0 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
# Go workspace file
go.work

View File

@ -1,27 +0,0 @@
package main
import (
"fmt"
"os"
"git.openfest.org/Video/openfest-video/break_player/mainservice"
)
func main() {
if len(os.Args) != 2 {
fmt.Fprintf(os.Stdout, "usage: %s <yaml config filename>\n", os.Args[0])
os.Exit(1)
}
svc, err := mainservice.New(os.Args[1])
if err != nil {
fmt.Fprintf(os.Stdout, "could not init main service: %s\n", err)
os.Exit(1)
}
err = svc.Serve()
if err != nil {
fmt.Fprintf(os.Stdout, "server died: %s\n", err)
os.Exit(1)
}
}

View File

@ -1,34 +0,0 @@
web_server:
bind: '[::]:8000'
player:
initial_playlist: 'off'
start_volume: 100
reset_volume_at_each_play: true
playlists:
- name: 'promo'
order: 'sequential'
media:
- '/home/human/s/random/blender_movies/big_buck_bunny_720_stereo-720p.mp4'
- '/home/human/s/random/blender_movies/sintel-the-movie-720p.mp4'
- name: 'openart_casting_couch'
media:
- 'rtmp://strm.ludost.net/openfest_interviews'
- name: 'openart_lecture'
media:
- 'rtmp://strm.ludost.net/openfest_interviews'
- name: 'ads'
order: 'shuffle'
media:
- '/home/human/s/random/blender_movies/big_buck_bunny_720_stereo-720p.mp4'
- '/home/human/s/random/blender_movies/sintel-the-movie-720p.mp4'
- '/home/human/s/random/blender_movies/elephants-dream-1080p.mp4'
- '/home/human/s/random/blender_movies/tears-of-steel.mp4'
- name: 'off'
media:
- '/home/human/s/random/placeholder.png'

View File

@ -1,3 +0,0 @@
module git.openfest.org/Video/openfest-video/break_player
go 1.22.2

View File

@ -1,16 +0,0 @@
package mainservice
type MainService struct {
}
func New(configFileName string) (*MainService, error) {
// parse config
return nil, nil
}
func (s *MainService) Serve() error {
// start web server in goroutine
// start mpvipc in another goroutine
// go!
return nil
}

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff