CC-3174 : showbuilder
adding cue/fade columns to table fixing schedule fade out putting default fade between files not in a playlist.
This commit is contained in:
parent
6ecf2f94b0
commit
43d67c921d
6 changed files with 27 additions and 5 deletions
|
@ -40,6 +40,13 @@ class Application_Model_Scheduler {
|
|||
$data["cliplength"] = $file->getDbLength();
|
||||
$data["cueout"] = $file->getDbLength();
|
||||
|
||||
$defaultFade = Application_Model_Preference::GetDefaultFade();
|
||||
if ($defaultFade !== "") {
|
||||
//fade is in format SS.uuuuuu
|
||||
$data["fadein"] = $defaultFade;
|
||||
$data["fadeout"] = $defaultFade;
|
||||
}
|
||||
|
||||
$files[] = $data;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue