We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents0aeb28e +0303dca commit006fb0eCopy full SHA for 006fb0e
.buildpath
@@ -0,0 +1,5 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<buildpath>
3
+<buildpathentrykind="src"path=""/>
4
+<buildpathentrykind="con"path="org.eclipse.php.core.LANGUAGE"/>
5
+</buildpath>
.gitignore
@@ -1,3 +1,4 @@
test.php
build_docs.sh
.DS_Store
+/nbproject/private/
.project
@@ -0,0 +1,28 @@
+<projectDescription>
+<name>Zencoder PHP</name>
+<comment></comment>
+<projects>
6
+</projects>
7
+<buildSpec>
8
+<buildCommand>
9
+<name>org.eclipse.wst.common.project.facet.core.builder</name>
10
+<arguments>
11
+</arguments>
12
+</buildCommand>
13
14
+<name>org.eclipse.wst.validation.validationbuilder</name>
15
16
17
18
19
+<name>org.eclipse.dltk.core.scriptbuilder</name>
20
21
22
23
+</buildSpec>
24
+<natures>
25
+<nature>org.eclipse.php.core.PHPNature</nature>
26
+<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
27
+</natures>
28
+</projectDescription>
.settings/org.eclipse.php.core.prefs
@@ -0,0 +1,2 @@
+eclipse.preferences.version=1
+include_path=0;/Zencoder PHP
.settings/org.eclipse.wst.common.project.facet.core.xml
@@ -0,0 +1,7 @@
+<faceted-project>
+ <fixedfacet="php.core.component"/>
+ <fixedfacet="php.component"/>
+ <installedfacet="php.core.component"version="1"/>
+ <installedfacet="php.component"version="5.4"/>
+</faceted-project>
Services/Zencoder/Job.php
@@ -30,6 +30,15 @@ class Services_Zencoder_Job extends Services_Zencoder_Object
30
* @var Services_Zencoder_Input
31
*/
32
public$input;
33
+
34
+/**
35
+ * Services_Zencoder_Stream object containing information on the stream for
36
+ * live transcoding
37
+ *
38
+ * @var Services_Zencoder_Stream
39
+ */
40
+public$stream;
41
42
/**
43
* A copy of the raw API response for debug purposes
44
*
@@ -57,6 +66,8 @@ private function _update_attributes($attributes = array())
57
66
$this->_create_thumbnails($attr_value);
58
67
}elseif ($attr_name =="input_media_file" &&is_object($attr_value)) {
59
68
$this->input =newServices_Zencoder_Input($attr_value);
69
+ }elseif ($attr_name =="stream" &&is_object($attr_value)){
70
+$this->stream =newServices_Zencoder_Stream($attr_value);
60
71
}elseif (is_array($attr_value) ||is_object($attr_value)) {
61
72
$this->_update_attributes($attr_value);
62
73
}elseif (empty($this->$attr_name)) {
Services/Zencoder/Stream.php
@@ -0,0 +1,15 @@
+<?php
+ * Zencoder API client interface.
+ * @category Services
+ * @package Services_Zencoder
+ * @author Carles Galan Cladera <cgcladera@gmail.com>
+ * @version Release: 2.1.1
+ * @license http://creativecommons.org/licenses/MIT/MIT
+ * @link http://github.com/zencoder/zencoder-php
+class Services_Zencoder_Streamextends Services_Zencoder_Object
+{
+}