Added free audio samples from OpSound, removed old audio samples referring
to LiveSupport. Added License information for the audio samples. Added a working silence file. Pypo: Changed the Campcaster API client to ignore playlists that have already past. Updated "cleanup()" function with Jonas fixes. Cleanup up a lot of print statements, converted to debug statements. Added missing data from the Campcaster JSON export.
This commit is contained in:
parent
8e7e0226e6
commit
10caa36c70
6 changed files with 257 additions and 190 deletions
|
@ -461,6 +461,10 @@ class Schedule {
|
|||
$playlists[$pkey]['duration'] = $dx['clip_length'];
|
||||
$playlists[$pkey]['played'] = '0';
|
||||
$playlists[$pkey]['schedule_id'] = $dx['group_id'];
|
||||
$playlists[$pkey]['user_id'] = 0;
|
||||
$playlists[$pkey]['id'] = $dx["playlist_id"];
|
||||
$playlists[$pkey]['start'] = Schedule::CcTimeToPypoTime($dx["start"]);
|
||||
$playlists[$pkey]['end'] = Schedule::CcTimeToPypoTime($dx["end"]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -487,7 +491,8 @@ class Schedule {
|
|||
'fade_out' => Schedule::WallTimeToMillisecs($item["fade_out"]),
|
||||
'fade_cross' => 0,
|
||||
'cue_in' => Schedule::WallTimeToMillisecs($item["cue_in"]),
|
||||
'cue_out' => $cueOut
|
||||
'cue_out' => $cueOut,
|
||||
'export_source' => 'scheduler'
|
||||
);
|
||||
}
|
||||
$playlist['medias'] = $medias;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue