Initial commit
This commit is contained in:
28
main_releases.go
Normal file
28
main_releases.go
Normal file
@@ -0,0 +1,28 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"time"
|
||||
"varia-go/task_pack_release"
|
||||
|
||||
"github.com/roemer/gotaskr"
|
||||
)
|
||||
|
||||
func init() {
|
||||
gotaskr.Task("Jimmy-Neutron-Extra", func() error {
|
||||
return task_pack_release.PackRelease(
|
||||
`\\nas03\storage\_Incoming\_Reencode\The Adventures of Jimmy Neutron\_enc\Extras\Jimmy Neutron - S01E00 - Pilotfolge - Runaway Rocketboy.mkv`,
|
||||
`F:\jim\extra_2`, "jim-extra", "serienfans.org", "500m",
|
||||
&task_pack_release.NfoCreatorSettings{
|
||||
Title: task_pack_release.NewTitleBuilder("Jimmy.Neutron.S01E00.Pilot.Runaway.Rocketboy").DVDRip().X264().Build(),
|
||||
Infos: []*task_pack_release.KeyValue{
|
||||
{"Release Date", time.Now().Format(time.DateOnly)},
|
||||
{"Source", task_pack_release.Dvd},
|
||||
{"Subs", "German"},
|
||||
{"Video", "768x576"},
|
||||
{"Audio 1", "English"},
|
||||
},
|
||||
Notes: "Degrained, sharpened, cropped.",
|
||||
},
|
||||
)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user