-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/customizeable directories #23
Conversation
Added possibility to explicitly include configurations for HLS manifest generation
@@ -550,7 +550,7 @@ public function createDashManifest(JobContainer $jobContainer) | |||
} | |||
else | |||
{ | |||
DashManifestFactory::createDashManifestForEncoding($jobContainer, $encodingContainer, $dashManifest, $period, $this->apiClient); | |||
DashManifestFactory::createDashManifestForEncoding($jobContainer, $encodingContainer, $dashManifest, $period, $this->apiClient, $dash); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this variable $dash?
* @param DashOutputFormat $dashManifest | ||
* @return array | ||
*/ | ||
private static function getConfigurationsForEncoding(EncodingContainer $encodingContainer, DashOutputFormat $dashManifest) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the variable naming $dashManifest really correct? Should probably be $dashOutputFormat?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good :-)
No description provided.