prev/next

Error Messages

How can I remove chapter markers from my encodes?

Chapter markers got you down? Try this easy fix for removing chapter marker metadata from your source videos. This action, by default, is set to no; if you know your clip contains this metadata, switch </strip_chapters> to yes. 

Via API:

 <format>
 <!-- Format fields -->
 <strip_chapters>[yes|no]</strip_chapters>
 ...
 </format> 

Via UI:

You will find this

 More -->

Chapter markers got you down? Try this easy fix for removing chapter marker metadata from your source videos. This action, by default, is set to no; if you know your clip contains this metadata, switch </strip_chapters> to yes. 

Via API:

<format>
    <!-- Format fields -->
    <strip_chapters>[yes|no]</strip_chapters>
        ...
    </format>

Via UI:

You will find this feature at the bottom of the task list, underneath 'Denoiser'

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

How do I stop an encode via API?

If you wish to stop the processing of any medaID via API, send the action 'StopMedia.' 

Example: 

<?xml version="1.0"?>
<query>
<action>StopMedia</action>
<userid>[UserID]</userid>
<userkey>2a595f16aefdfbd1e3d7bf9952229bfa</userkey> 
<mediaid>[MediaID]</mediaid>
</query>

If you wish to stop the processing of any medaID via API, send the action 'StopMedia.' 

Example: 

<?xml version="1.0"?>
<query>
<action>StopMedia</action>
<userid>[UserID]</userid>
<userkey>2a595f16aefdfbd1e3d7bf9952229bfa</userkey> 
<mediaid>[MediaID]</mediaid>
</query>

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

How can I correct audio sync issues?

You can easily correct audio sync issues by setting the audio_sync tag in your XML, as follows: 

 <audio_sync>1</audio_sync> 

This works by adjusting the output audio stream to match the source timestamps, in # of samples per second. Consider this a great for fixing sync when source is variable framerate, or has timescale problems.

The most common instance

 More -->

You can easily correct audio sync issues by setting the audio_sync tag in your XML, as follows: 

<audio_sync>1</audio_sync>

This works by adjusting the output audio stream to match the source timestamps, in # of samples per second. Consider this a great for fixing sync when source is variable framerate, or has timescale problems.

The most common instance of this is webcam video recorded with Nellymoser audio codec from the free flash plugin.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

How do I format my source URL for a FTPS source?

Thinking of using FTPS as your source locations? No problemo.

All you need to do is specify the port in which we access your file at. Connections via FTPS will use port 22 by default. If you'd like to specify a different port, add it to then end of your URL.

Example:

FTPS://www.xyz.com:[port]/files/input.mov

 More -->

Thinking of using FTPS as your source locations? No problemo.

All you need to do is specify the port in which we access your file at. Connections via FTPS will use port 22 by default. If you'd like to specify a different port, add it to then end of your URL.

Example:

FTPS://www.xyz.com:[port]/files/input.mov

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 7 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

How do I format my source URL for a HTTPS source?

Thinking of using HTTPS as your source locations? No problemo.

All you need to do is specify the port in which we access your file at. Connections via HTTPS will use port 443 by default. If you'd like to specify a different port, add it to then end of your URL.

Example:

HTTPS://www.xyz.com:[port]/files/input.mov

 More -->

Thinking of using HTTPS as your source locations? No problemo.

All you need to do is specify the port in which we access your file at. Connections via HTTPS will use port 443 by default. If you'd like to specify a different port, add it to then end of your URL.

Example:

HTTPS://www.xyz.com:[port]/files/input.mov

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What are the differences between the Restart actions in the API?

There's a little bit of similarity in a few of the Restart actions in the API. Here's the breakdown:

+ RestartMedia:  This will completely restart the entire job, including all tasks.

+ RestartMediaErrors:  This action will retry specific tasks within the request that produced an error. For example, if you received a 404 error on a file and

 More -->

There's a little bit of similarity in a few of the Restart actions in the API. Here's the breakdown:

+ RestartMedia:  This will completely restart the entire job, including all tasks.

+ RestartMediaErrors:  This action will retry specific tasks within the request that produced an error. For example, if you received a 404 error on a file and remedied the issue, this action will successfully rerun only that task. 

+ RestartMediaTask:  This action requires an additional parameter. You can specify to rerun a specific task within a MediaID. For more information on the difference between MediaIDs and TaskIDs, please go here.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What is wrong with my XML POST?

If you having issues with posting your XML to http://manage.encoding.com from your scripted workflow, please make sure that you have added the following:

Content-Type: application/x-www-form-urlencoded

This helps to avoid errors such as:

<?xml version="1.0"?>
<response>
<errors>
<error>Wrong XML!String could not be parsed as XML</error>
</errors>
</response>

 

 

If you having issues with posting your XML to http://manage.encoding.com from your scripted workflow, please make sure that you have added the following:

Content-Type: application/x-www-form-urlencoded

This helps to avoid errors such as:

<?xml version="1.0"?>
<response>
<errors>
<error>Wrong XML!String could not be parsed as XML</error>
</errors>
</response>

 

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 3 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Can I have multiple notifications via API?

Unforuntely at this time, the notify field only allows one URL or email address. This can be either an HTTP(S) URL for the script with which the result will be posted, or a mailto: link with email address for which the result info will be sent. Note that this field may be specified for AddMedia and AddMediaBenchmark actions.

Unforuntely at this time, the notify field only allows one URL or email address. This can be either an HTTP(S) URL for the script with which the result will be posted, or a mailto: link with email address for which the result info will be sent. Note that this field may be specified for AddMedia and AddMediaBenchmark actions.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What can I do—S3 is just not working for me?

You've read all the help articles, you've done your homework, and S3 is still giving you grief.  

Check this one simple thing, and it should help you with your final issues.

Does your source or destination URL look like this:

http://[your_accesskey_code]:[your_secretkey_code]@CLIVETHEGOAT.s3.amazonaws.com/path

Amazon AWS does not recognize capital letters of bucketnames (the part after the @).

 More -->

You've read all the help articles, you've done your homework, and S3 is still giving you grief.  

Check this one simple thing, and it should help you with your final issues.

Does your source or destination URL look like this:

http://[your_accesskey_code]:[your_secretkey_code]@CLIVETHEGOAT.s3.amazonaws.com/path

Amazon AWS does not recognize capital letters of bucketnames (the part after the @). Change that puppy to this:

http://[your_accesskey_code]:[your_secretkey_code]@clivethegoat.s3.amazonaws.com/path

If all is still not well, drop us a line at helpdesk@encoding.com and we'll help you solve your issue with this.

 
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Video stream was not found

This message is displayed when you have attempted to encode a media file into a video format and no video stream was found in the source file.  For example if you are attempting to encoding a .mp3 file into a video format. The media would need to be run into an audio only format.

If you feel this error

 More -->

This message is displayed when you have attempted to encode a media file into a video format and no video stream was found in the source file.  For example if you are attempting to encoding a .mp3 file into a video format. The media would need to be run into an audio only format.

If you feel this error is incorrect, please email support at helpdesk@encoding.com.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Upload error: Failed FTP upload: 550

This error is returned when our system is not able to send the video to the FTP/SFTP destination you specified.  Please verify the username, password, permissions, and complete directory path in a FTP client prior to adding it to our system.

This error is returned when our system is not able to send the video to the FTP/SFTP destination you specified.  Please verify the username, password, permissions, and complete directory path in a FTP client prior to adding it to our system.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 3 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Double percent-encoding needed for VBScript FTP paths

For VBScript output to work, you may need to percent-encode the destination path twice. Like this.

Regular FTP path:
ftp://username@yourcompany.com:password@server.com/file.m3u8?passive=yes

Single URL (%) encoded - used for some standard FTP configurations
ftp://username%40yourcompany.com:password@server.com/file.m3u8?passive=yes

Double URL (%) encoded - used for VBScript FTP
ftp%3A%2F%2Fusername%2540yourcompany%3Apassword%40server.com%2Ffile.m3u8%3Fpassive%3Dyes

For VBScript output to work, you may need to percent-encode the destination path twice. Like this.

Regular FTP path:
ftp://username@yourcompany.com:password@server.com/file.m3u8?passive=yes

Single URL (%) encoded - used for some standard FTP configurations
ftp://username%40yourcompany.com:password@server.com/file.m3u8?passive=yes

Double URL (%) encoded - used for VBScript FTP
ftp%3A%2F%2Fusername%2540yourcompany%3Apassword%40server.com%2Ffile.m3u8%3Fpassive%3Dyes

<-- Hide

tools: email  |  print  |  share  |  click to rate (rated 3 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00229 mean?

The error message ECOM00229 translates to "S3 upload error: We encountered an internal error. Please try again."

The error message ECOM00229 translates to "S3 upload error: We encountered an internal error. Please try again."

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00228 mean?

The error message ECOM00228 translates to "S3 upload error: Your socket connection to the server was not read from or written to within the timeout period. Idle connections will be closed."

The error message ECOM00228 translates to "S3 upload error: Your socket connection to the server was not read from or written to within the timeout period. Idle connections will be closed."

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00230 mean?

The error message ECOM00230 translates to "Creating the dir/file failed: No such file or directory."

The error message ECOM00230 translates to "Creating the dir/file failed: No such file or directory."

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00202 mean?

The error message ECOM00202 translates to "Error putting thumbnail"

This error is encountered when our platform is unable to deliver the thumbnail to the specified destination. Please verify the path, syntax and permissions and retry your request.

The error message ECOM00202 translates to "Error putting thumbnail"

This error is encountered when our platform is unable to deliver the thumbnail to the specified destination. Please verify the path, syntax and permissions and retry your request.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00203 mean?

The error message ECOM00203 translates to "S3 Download error"

When you submit jobs to us via an Amazon S3 location, it's imperative that we can read it. Please refer to the Knowledge Base article on setting permissions if your source file is to be encoded properly. http://help.encoding.com/idx.php/9/025/Amazon-S3-Integration/article/How-can-I-use-a-Amazon-S3-file-as-a-source.html

The error message ECOM00203 translates to "S3 Download error"

When you submit jobs to us via an Amazon S3 location, it's imperative that we can read it. Please refer to the Knowledge Base article on setting permissions if your source file is to be encoded properly. http://help.encoding.com/idx.php/9/025/Amazon-S3-Integration/article/How-can-I-use-a-Amazon-S3-file-as-a-source.html

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00227 mean?

The error message ECOM00227 translates to "The requested URL returned error: 400"
The web server returned an error processing your request: the request was not understood.

The error message ECOM00227 translates to "The requested URL returned error: 400"
The web server returned an error processing your request: the request was not understood.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00226 mean?

The error message ECOM00226 translates to "The requested URL returned error: 503"

The web server returned an error processing your request: "Service Unavailable." 

The error message ECOM00226 translates to "The requested URL returned error: 503"

The web server returned an error processing your request: "Service Unavailable." 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00225 mean?

The error message ECOM00225 translates to "The requested URL returned error: 404"

The web server returned an error processing your request: there is no page with the specified URL.

The error message ECOM00225 translates to "The requested URL returned error: 404"

The web server returned an error processing your request: there is no page with the specified URL.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00201 mean?

The error message ECOM00201 translates to "Error while opening file"

Our encoding platform is experiencing issues decoding your source file. It may be the case that your source file format uses some features that our decoder doesn't currently support. Please scroll to the bottom of our home page and plug in your source and output formats to see if we

 More -->

The error message ECOM00201 translates to "Error while opening file"

Our encoding platform is experiencing issues decoding your source file. It may be the case that your source file format uses some features that our decoder doesn't currently support. Please scroll to the bottom of our home page and plug in your source and output formats to see if we support your request.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00224 mean?

 

The error message ECOM00224 translates to "The requested URL returned error: 403"
 
The web server returned an error processing your request: access to the requested URL is not allowed.

 

The error message ECOM00224 translates to "The requested URL returned error: 403"
 
The web server returned an error processing your request: access to the requested URL is not allowed.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00203 mean?

 

The error message ECOM00203 translates to "S3 Download error"
 
When you submit jobs to us via an Amazon S3 location, it's imperative that we can read it. Please refer to the Knowledge Base article on setting permissions if your source file is to be encoded properly. http://help.encoding.com/idx.php/9/025/Amazon-S3-Integration/article/How-can-I-use-a-Amazon-S3-file-as-a-source.html

 

The error message ECOM00203 translates to "S3 Download error"
 
When you submit jobs to us via an Amazon S3 location, it's imperative that we can read it. Please refer to the Knowledge Base article on setting permissions if your source file is to be encoded properly. http://help.encoding.com/idx.php/9/025/Amazon-S3-Integration/article/How-can-I-use-a-Amazon-S3-file-as-a-source.html
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00202 mean?

 

The error message ECOM00202 translates to "Error putting thumbnail"
 
This error is encountered when our platform is unable to deliver the thumbnail to the specified destination. Please verify the path, syntax and permissions and retry your request.

 

The error message ECOM00202 translates to "Error putting thumbnail"
 
This error is encountered when our platform is unable to deliver the thumbnail to the specified destination. Please verify the path, syntax and permissions and retry your request.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00201 mean?

 

The error message ECOM00201 translates to "Error while opening file"
 
Our encoding platform is experiencing issues decoding your source file. It may be the case that your source file format uses some features that our decoder doesn't currently support. Please scroll to the bottom of our home page and plug in your source and output
 More -->

 

The error message ECOM00201 translates to "Error while opening file"
 
Our encoding platform is experiencing issues decoding your source file. It may be the case that your source file format uses some features that our decoder doesn't currently support. Please scroll to the bottom of our home page and plug in your source and output formats to see if we support your request.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00139 mean?

 

The error message ECOM00139 translates to "Encoder error: Failed extracting mp3 from the ts file that was submitted"
 

 

The error message ECOM00139 translates to "Encoder error: Failed extracting mp3 from the ts file that was submitted"
 
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00138 mean?

The error message ECOM00138 translates to "Audio downmixing failed"

The error message ECOM00138 translates to "Audio downmixing failed"

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00137 mean?

The error message ECOM00137 translates to "Can not resample 4 channels @ 44100 Hz to 2 channels @ 44000 Hz"

 

 

The error message ECOM00137 translates to "Can not resample 4 channels @ 44100 Hz to 2 channels @ 44000 Hz"

 

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00223 mean?

The error message ECOM00223 translates to "Connection time-out"

Check to see if the location of your files either on the source side or destination is currently online. Try reaching the locations manually and check the syntax of the locations.

The error message ECOM00223 translates to "Connection time-out"

Check to see if the location of your files either on the source side or destination is currently online. Try reaching the locations manually and check the syntax of the locations.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00136 mean?

The error message ECOM00136 translates to "Bufsize is required"

 

The error message ECOM00136 translates to "Bufsize is required"

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00218 mean?

 

The error message ECOM00218 translates to "Cannot assign requested address"
 
This issue may be firewall related. Please ensure that we can gain access to the FTP server. Perhaps you may want to try using passive FTP mode for source or destination.

 

The error message ECOM00218 translates to "Cannot assign requested address"
 
This issue may be firewall related. Please ensure that we can gain access to the FTP server. Perhaps you may want to try using passive FTP mode for source or destination.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00135 mean?

The error message ECOM00135 translates to "syntax error near unexpected token"

Encoder error: OverallBitRate:163322\nsh: -c: line 0: syntax error near unexpected token `('\nsh: -c: line 0: `/usr/local/bin/mediainfo /mnt/vhosts/default/code/tmp/afa2b2b124ecb76ad4df56a4878d036f/Alic

The error message ECOM00135 translates to "syntax error near unexpected token"

Encoder error: OverallBitRate:163322\nsh: -c: line 0: syntax error near unexpected token `('\nsh: -c: line 0: `/usr/local/bin/mediainfo /mnt/vhosts/default/code/tmp/afa2b2b124ecb76ad4df56a4878d036f/Alic

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00222 mean?

 

The error message ECOM00222 translates to "S3 upload error: All access to this object has been disabled"
 
Permissions, naming and other features may have changed on the destination side of things. Check to see if any of the permissions, locations or any other features have changed on the S3 storage location.
 
 
 More -->

 

The error message ECOM00222 translates to "S3 upload error: All access to this object has been disabled"
 
Permissions, naming and other features may have changed on the destination side of things. Check to see if any of the permissions, locations or any other features have changed on the S3 storage location.
 
 
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00134 mean?

The error message ECOM00134 translates to "width or height not divisible by 16 (480x360), compression will suffer"

Your source video appears to not want to play nicely with our encoding platform. Generally, it's best to see what the dimensions are of the video and see if they are divisible by 16.

The error message ECOM00134 translates to "width or height not divisible by 16 (480x360), compression will suffer"

Your source video appears to not want to play nicely with our encoding platform. Generally, it's best to see what the dimensions are of the video and see if they are divisible by 16.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00221 mean?

 

The error message ECOM00221 translates to "S3 download error: The specified key does not exist"
 
It appears that your Amazon key is not being recognized as valid. Please check the content of the string you entered and see if it is valid. Also, please make sure that the key that you are using from S3
 More -->

 

The error message ECOM00221 translates to "S3 download error: The specified key does not exist"
 
It appears that your Amazon key is not being recognized as valid. Please check the content of the string you entered and see if it is valid. Also, please make sure that the key that you are using from S3 is current.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00220 mean?

 

The error message ECOM00220 translates to "Failed to MKD dir"
 
This error is related to an issue with the path and the folder. Please check whether you specified correct path and set appropriate permissions.

 

The error message ECOM00220 translates to "Failed to MKD dir"
 
This error is related to an issue with the path and the folder. Please check whether you specified correct path and set appropriate permissions.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00219 mean?

 

The error message ECOM00219 translates to "Error getting file"
 
Check your S3 source permissions, bucket name and credentials for valid values and resubmit. If this doesn't clear up your issue, try a different location or contact Support.

 

The error message ECOM00219 translates to "Error getting file"
 
Check your S3 source permissions, bucket name and credentials for valid values and resubmit. If this doesn't clear up your issue, try a different location or contact Support.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00211 mean?

 

The error message ECOM00211 translates to "Timed out before server could connect to us"
 
A good attempt at trying to get around this issue is to try to use passive mode in your FTP syntax. Simply add '?passive=yes' to the end of your FTP URL.

 

The error message ECOM00211 translates to "Timed out before server could connect to us"
 
A good attempt at trying to get around this issue is to try to use passive mode in your FTP syntax. Simply add '?passive=yes' to the end of your FTP URL.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00210 mean?

 

The error message ECOM00210 translates to "Upload Error: Authentication failure"
 
This error is directly related to your login details. Please double check that your username and password are correct. Also. when you enter in details for the username for your destination URL, you must ensure that you specify non-encoded characters by their proper hexadecimal equivalent.
 More -->

 

The error message ECOM00210 translates to "Upload Error: Authentication failure"
 
This error is directly related to your login details. Please double check that your username and password are correct. Also. when you enter in details for the username for your destination URL, you must ensure that you specify non-encoded characters by their proper hexadecimal equivalent. For example, if '@' is part of your username, you must replace the '@' in the username part of your destination URL with '%40'.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00209 mean?

 

The error message ECOM00209 translates to "Failed FTP upload: 550"
 
Error 550 usually denotes a permissions error. The FTP server at the client level is not allowing the credentials that it was passed to do what it was expected to with the file system. Please check whether the FTP user is allowed to read &
 More -->

 

The error message ECOM00209 translates to "Failed FTP upload: 550"
 
Error 550 usually denotes a permissions error. The FTP server at the client level is not allowing the credentials that it was passed to do what it was expected to with the file system. Please check whether the FTP user is allowed to read & write to the specified directory. It's also important to know if that user can delete files. Please also ensure that the destination path exists.
 
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00208 mean?

 

The error message ECOM00208 translates to "Error accessing S3 file"
 
It appears that the correct permissions were not exacted upon the destination folder. Please also check to see if the specified destination bucket exists. You can read all about S3 Amazon permissions for destinations at this Knowledge Base article: http://help.encoding.com/idx.php/9/032/Amazon-S3-Integration/article/Setting-permissions-for-Amazon-S3-bucket-delivery-from-encodingcom.html

 

The error message ECOM00208 translates to "Error accessing S3 file"
 
It appears that the correct permissions were not exacted upon the destination folder. Please also check to see if the specified destination bucket exists. You can read all about S3 Amazon permissions for destinations at this Knowledge Base article: http://help.encoding.com/idx.php/9/032/Amazon-S3-Integration/article/Setting-permissions-for-Amazon-S3-bucket-delivery-from-encodingcom.html
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00207 mean?

 

The error message ECOM00207 translates to "Error putting file to S3"
 
It appears that the correct permissions were not exacted upon the destination folder. Please also check to see if the specified destination bucket exists. You can read all about S3 Amazon permissions for destinations at this Knowledge Base article: http://help.encoding.com/idx.php/9/032/Amazon-S3-Integration/article/Setting-permissions-for-Amazon-S3-bucket-delivery-from-encodingcom.html
 
 More -->

 

The error message ECOM00207 translates to "Error putting file to S3"
 
It appears that the correct permissions were not exacted upon the destination folder. Please also check to see if the specified destination bucket exists. You can read all about S3 Amazon permissions for destinations at this Knowledge Base article: http://help.encoding.com/idx.php/9/032/Amazon-S3-Integration/article/Setting-permissions-for-Amazon-S3-bucket-delivery-from-encodingcom.html
 
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00206 mean?

 

The error message ECOM00206 translates to "Upload Error: Uploaded unaligned file size"
 
When this error is encountered, we would encourage you to double check that the file was not relocated or removed from its current location while uploading to encoding.com's platform. There's also the chance that a network connection was lost at the source file
 More -->

 

The error message ECOM00206 translates to "Upload Error: Uploaded unaligned file size"
 
When this error is encountered, we would encourage you to double check that the file was not relocated or removed from its current location while uploading to encoding.com's platform. There's also the chance that a network connection was lost at the source file location. Please upload and attempt to transcode.
 
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00205 mean?

 

The error message ECOM00205 translates to "Upload Error: Couldn\'t resolve host .*@"
 
When you enter in details for the username for your destination URL, you must ensure that you specify non-encoded characters by their proper hexadecimal equivalent. For example, if '@' is part of your username, you must replace the '@' in the username part
 More -->

 

The error message ECOM00205 translates to "Upload Error: Couldn\'t resolve host .*@"
 
When you enter in details for the username for your destination URL, you must ensure that you specify non-encoded characters by their proper hexadecimal equivalent. For example, if '@' is part of your username, you must replace the '@' in the username part of your destination URL with '%40'.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00204 mean?

 

The error message ECOM00204 translates to "S3 Upload Error: Access denied"
 
When you encounter this error, the first step that you must take it to verify that the S3 destination bucket has granted write permission for AWS user fastencoding. Please view the knowledge base article on S3 delivery for further explanation: http://help.encoding.com/idx.php/9/032/Amazon-S3-Integration/article/Setting-permissions-for-Amazon-S3-bucket-delivery-from-encodingcom.html
 More -->

 

The error message ECOM00204 translates to "S3 Upload Error: Access denied"
 
When you encounter this error, the first step that you must take it to verify that the S3 destination bucket has granted write permission for AWS user fastencoding. Please view the knowledge base article on S3 delivery for further explanation: http://help.encoding.com/idx.php/9/032/Amazon-S3-Integration/article/Setting-permissions-for-Amazon-S3-bucket-delivery-from-encodingcom.html
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00216 mean?

 

The error message ECOM00216 translates to "connect() timed out"
 
This error occurs when we have users that are requesting our platform to access files that are on an FTP server that is behind a firewall. Also, please verify that your FTP server is running and reachable by outside sources.

 

The error message ECOM00216 translates to "connect() timed out"
 
This error occurs when we have users that are requesting our platform to access files that are on an FTP server that is behind a firewall. Also, please verify that your FTP server is running and reachable by outside sources.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00133 mean?

The error message ECOM00133 translates to "Can't get segment duration"

Encoder error: OverallBitRate:588175\n\n\nDuration:380612\n\n\nCan't get segment duration\n

The error message ECOM00133 translates to "Can't get segment duration"

Encoder error: OverallBitRate:588175\n\n\nDuration:380612\n\n\nCan't get segment duration\n

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00215 mean?

 

The error message ECOM00215 translates to "couldn't connect to host"
 
This error occurs when we have users that are requesting that our platform access files that are on an FTP server that is behind a firewall. Also, please verify that your FTP server is running and reachable by outside sources.

 

The error message ECOM00215 translates to "couldn't connect to host"
 
This error occurs when we have users that are requesting that our platform access files that are on an FTP server that is behind a firewall. Also, please verify that your FTP server is running and reachable by outside sources.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00214 mean?

 

The error message ECOM00214 translates to "Upload failed: Permission denied"
 
Our encoding platform is experiencing issues accessing your files at your S3 location. Please make sure your source files and containing bucket are readable by AWS user 'fastencoding'.

 

The error message ECOM00214 translates to "Upload failed: Permission denied"
 
Our encoding platform is experiencing issues accessing your files at your S3 location. Please make sure your source files and containing bucket are readable by AWS user 'fastencoding'.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00213 mean?

 

The error message ECOM00213 translates to "Upload failed: Permission denied"
 
Please check if you specified correct file path (especially when using SFTP), and the specified user is able to write to this directory. It's imperative for the user whom is accessing the directory to have write permissions.

 

The error message ECOM00213 translates to "Upload failed: Permission denied"
 
Please check if you specified correct file path (especially when using SFTP), and the specified user is able to write to this directory. It's imperative for the user whom is accessing the directory to have write permissions.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00212 mean?

 

The error message ECOM00212 translates to "Upload Error: Upload failed: Permission denied"
 
Please check if your credentials are correct for the FTP path specified. If you are using special characters in your username, it's imperative to URL encode them. For example, if you are using @ in a username, replace it with %40. It's also
 More -->

 

The error message ECOM00212 translates to "Upload Error: Upload failed: Permission denied"
 
Please check if your credentials are correct for the FTP path specified. If you are using special characters in your username, it's imperative to URL encode them. For example, if you are using @ in a username, replace it with %40. It's also worth looking into whether or not the user whom is accessing the directory has write permissions.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00217 mean?

 

The error message ECOM00217 translates to "error opening file"
 
Please verify that your source file is self-contained. It may be that your source file contains references to streams located in another files on your hard drive.

 

The error message ECOM00217 translates to "error opening file"
 
Please verify that your source file is self-contained. It may be that your source file contains references to streams located in another files on your hard drive.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00119 mean?

The error message ECOM00119 translates to "libfaac doesn't support this output format." 

The most often reason that you would run across this video is that the left audio parameter is blank. At this point, the encoder tried to take them from the source, but the target audio codec does not support such parameters set, e.g. 8000 Hz mono.

 More -->

The error message ECOM00119 translates to "libfaac doesn't support this output format." 

The most often reason that you would run across this video is that the left audio parameter is blank. At this point, the encoder tried to take them from the source, but the target audio codec does not support such parameters set, e.g. 8000 Hz mono.

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00132 mean?

 

 

The error message ECOM00127 translates to "Incorrect video parameters such as bitrate, width or height"
 
Your source video appears to not want to play nicely with our encoding platform. Generally, it's best to see what the dimensions are of the video and see if they are divisible by 8.
 More -->

 

 

The error message ECOM00127 translates to "Incorrect video parameters such as bitrate, width or height"
 
Your source video appears to not want to play nicely with our encoding platform. Generally, it's best to see what the dimensions are of the video and see if they are divisible by 8.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00130 mean?

 

The error message ECOM00127 translates to "an encoder error"
 
Additional notes: -acodec libmp3lame Encoder error: /usr/local/ffmpeg/current/bin/ffmpeg -i '/mnt/vhosts/default/code/tmp/331bc4d5e40275ce90cd389f313f4071/vzc06e77571ebe4fa8834255d2e369c81b-1200k.split.1.ts' -vn -acodec libmp3lame -y '/m

 

The error message ECOM00127 translates to "an encoder error"
 
Additional notes: -acodec libmp3lame Encoder error: /usr/local/ffmpeg/current/bin/ffmpeg -i '/mnt/vhosts/default/code/tmp/331bc4d5e40275ce90cd389f313f4071/vzc06e77571ebe4fa8834255d2e369c81b-1200k.split.1.ts' -vn -acodec libmp3lame -y '/m
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00129 mean?

 

The error message ECOM00129 translates to "Compressed SWF format not supported"
 
Simply put, we can't decode this codec.

 

The error message ECOM00129 translates to "Compressed SWF format not supported"
 
Simply put, we can't decode this codec.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00128 mean?

The error message ECOM00128 translates to "Encoder error: sh: /bin/tar: Argument list too long"

This is known bug. It will be fixed in nearest release.

The error message ECOM00128 translates to "Encoder error: sh: /bin/tar: Argument list too long"

This is known bug. It will be fixed in nearest release.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00127 mean?

 

The error message ECOM00127 translates to "Audio stream was not found."
 
Verify that the clip that you sent contains audio. Also please verify that the clip that you sent transferred in its entirety. If you're sure your media contains the right components, please contact technical support
 

 

The error message ECOM00127 translates to "Audio stream was not found."
 
Verify that the clip that you sent contains audio. Also please verify that the clip that you sent transferred in its entirety. If you're sure your media contains the right components, please contact technical support
 
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00126 mean?

 

The error message ECOM00126 translates to "Encoding was not completed An unexpected error occurred during encoding."
 
Computers aren't always perfect! Try to restart your job to see if you can circumvent this issue.

 

The error message ECOM00126 translates to "Encoding was not completed An unexpected error occurred during encoding."
 
Computers aren't always perfect! Try to restart your job to see if you can circumvent this issue.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 3 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00125 mean?

 

The error message ECOM00125 translates to "Could not decode source file."
 
Please verify that the source clip that you submitted is acceptable by our encoding platform. If you browse to the bottom of http://www.encoding.com and plug in your source and desired output, you can verify whether or not we support your source codec.
 More -->

 

The error message ECOM00125 translates to "Could not decode source file."
 
Please verify that the source clip that you submitted is acceptable by our encoding platform. If you browse to the bottom of http://www.encoding.com and plug in your source and desired output, you can verify whether or not we support your source codec.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00124 mean?

The error message ECOM00124 translates to "Segmentation error"

This error can be traced to specifying the incorrect set of parameters: segment duration, framerates and keyframes. Please refer to http://help.encoding.com/idx.php/0/142/article/why-do-i-get-segmentation-error.html for more details

The error message ECOM00124 translates to "Segmentation error"

This error can be traced to specifying the incorrect set of parameters: segment duration, framerates and keyframes. Please refer to http://help.encoding.com/idx.php/0/142/article/why-do-i-get-segmentation-error.html for more details

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00123 mean?

The error message ECOM00123 translates to "Neither video nor audio stream was found."

Verify that the clip that you sent does contain video and audio. Also please verify that the clip that you sent transferred in its entirety. If you're sure your media contains the right components, please contact technical support.

 

The error message ECOM00123 translates to "Neither video nor audio stream was found."

Verify that the clip that you sent does contain video and audio. Also please verify that the clip that you sent transferred in its entirety. If you're sure your media contains the right components, please contact technical support.

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00122 mean?

The error message ECOM00122 translates to "Unknown format."

This error could denote a few different issues:

1) Your source file may be corrupted. Please verify that your source has uploaded in its entirety.

2) Double check that your file is supported by encoding.com. It may be that it is not supported format. Check it against our source

 More -->

The error message ECOM00122 translates to "Unknown format."

This error could denote a few different issues:

1) Your source file may be corrupted. Please verify that your source has uploaded in its entirety.

2) Double check that your file is supported by encoding.com. It may be that it is not supported format. Check it against our source listing: http://www.encoding.com/wdocs/SourceFileFormats

3) The path to your source may not be valid. Be sure the source URL you specified is correct in path and syntax and that there are external references that could not be interpreted by our download engine.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00121 mean?

The error message ECOM00121 translates to "Unsupported codec for input video stream."

Your source media contains a video stream that our system cannot decode. A good way of isolating this issue is to resubmit a different version of your source clip. Please contact technical support for more details.

 

The error message ECOM00121 translates to "Unsupported codec for input video stream."

Your source media contains a video stream that our system cannot decode. A good way of isolating this issue is to resubmit a different version of your source clip. Please contact technical support for more details.

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00120 mean?

The error message ECOM00120 translates to "Unsupported codec for input audio stream." 

Your source media contains an audio stream that our platform could not decode. A good way of isolating this issue is to resubmit a different version of your source clip. Please contact technical support for more details.

The error message ECOM00120 translates to "Unsupported codec for input audio stream." 

Your source media contains an audio stream that our platform could not decode. A good way of isolating this issue is to resubmit a different version of your source clip. Please contact technical support for more details.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00118 mean?

The error message ECOM00118 translates to "Video codec is not supported." 

Our encoding engine is unable to decode the source video that you submitted. Please refer to our supported format list and submit a different version of your clip.

The error message ECOM00118 translates to "Video codec is not supported." 

Our encoding engine is unable to decode the source video that you submitted. Please refer to our supported format list and submit a different version of your clip.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

How can I better understand the types of error messages I am receiving?

To provide a foundation for a strong error messaging system, we have segmented error codes into four main categories.  This makes the error messages easier to classify as well as allow our API customers to take specific actions programatically in their software based on a specific error message that was returned.  Here is the breakdown of categories:

ECOM00000 –  More -->

To provide a foundation for a strong error messaging system, we have segmented error codes into four main categories.  This makes the error messages easier to classify as well as allow our API customers to take specific actions programatically in their software based on a specific error message that was returned.  Here is the breakdown of categories:

ECOM00000 – Unknown errors
ECOM000xx – General errors
ECOM001xx – Encoding errors
ECOM002xx – File access errors (download, upload, etc)

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00117 mean?

The error message ECOM00117 translates to "Unknown encoder ." 

No resulting file. Our encoder was not able to produce any resulting file from the submitted clip. This is internal error, please inform us if it persists.

 

 

The error message ECOM00117 translates to "Unknown encoder ." 

No resulting file. Our encoder was not able to produce any resulting file from the submitted clip. This is internal error, please inform us if it persists.

 

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00116 mean?

 

The error message ECOM00116 translates to "Wrong input file format" 
 
Your source file may be corrupted or it is not in supported format. Be sure the source URL you specified returns valid data and there is no JavaScript or external references that could not be understood by our download engine.
 More -->

 

The error message ECOM00116 translates to "Wrong input file format" 
 
Your source file may be corrupted or it is not in supported format. Be sure the source URL you specified returns valid data and there is no JavaScript or external references that could not be understood by our download engine.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00115 mean?

 

The error message ECOM00115 translates to "Video stream was not found." 
 
Generally we see these errors when there are issues related to the uploading of source clips. Also, please double check that the video that you submitted contains a video stream.

 

The error message ECOM00115 translates to "Video stream was not found." 
 
Generally we see these errors when there are issues related to the uploading of source clips. Also, please double check that the video that you submitted contains a video stream.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00114 mean?

The error message ECOM00114 translates to "Requested video bitrate is too low." 

 
For this error, I would refer back to your request and verify that you specified the bitrate correctly, e.g. "500k" instead of "500". Also, you can avoid such issues by using 1-pass encoding.

The error message ECOM00114 translates to "Requested video bitrate is too low." 

 
For this error, I would refer back to your request and verify that you specified the bitrate correctly, e.g. "500k" instead of "500". Also, you can avoid such issues by using 1-pass encoding.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00113 mean?

 

The error message ECOM00113 translates to "Unknown encoder error ." 
 
This vague error will be thrown when there is an encoder error at the platform level. Don't hesitate to give us a jingle or an email through the support form if you want to alert us!

 

The error message ECOM00113 translates to "Unknown encoder error ." 
 
This vague error will be thrown when there is an encoder error at the platform level. Don't hesitate to give us a jingle or an email through the support form if you want to alert us!
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00112 mean?

The error message ECOM00112 translates to "Encoding was not completed: .*: could not find codec parameters."

Your source file did not contain a video stream. Please check your source file for a video stream if the request that you made was for an output requiring audio and video.

 

The error message ECOM00112 translates to "Encoding was not completed: .*: could not find codec parameters."

Your source file did not contain a video stream. Please check your source file for a video stream if the request that you made was for an output requiring audio and video.

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00111 mean?

 

The error message ECOM00111translates to "Unsupported codec .* for input" 
 
Your source file that you presented to us is not part of our supported format list. We could not decode your source! It's best to check what you submitted to us against the supported format list. You can double check if your source format is
 More -->

 

The error message ECOM00111translates to "Unsupported codec .* for input" 
 
Your source file that you presented to us is not part of our supported format list. We could not decode your source! It's best to check what you submitted to us against the supported format list. You can double check if your source format is acceptable by going to the bottom portion of encoding.com and entering in your source and output formats. ECOM00111
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00110 mean?

 

The error message ECOM00110 translates to "Cannot allocate temp picture, check pix fmt." 
 
You'll receive this error if you've specified a frame size that is not acceptable to the format you have chosen. This will happen when the frame size that is requested is too large for the selected codec.

 

The error message ECOM00110 translates to "Cannot allocate temp picture, check pix fmt." 
 
You'll receive this error if you've specified a frame size that is not acceptable to the format you have chosen. This will happen when the frame size that is requested is too large for the selected codec.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00109 mean?

 

The error message ECOM00109 translates to "Output file does not contain any stream." 
 
It seems your source file looks like valid video container, but it doesn't contain any video/audio data. Be sure the source URL you specified returns valid data and there is no JavaScript or external references that could not be understood by our download
 More -->

 

The error message ECOM00109 translates to "Output file does not contain any stream." 
 
It seems your source file looks like valid video container, but it doesn't contain any video/audio data. Be sure the source URL you specified returns valid data and there is no JavaScript or external references that could not be understood by our download engine.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00108 mean?

 

The error message ECOM00108 translates to "Unsupported codec for output stream." 
 
There are certain formats that need to have certain parameters defined before they will work properly. In such cases you must specify the values explicitly in your request. For example for 3GP format you should use audio codec libamr_nb.
 More -->

 

The error message ECOM00108 translates to "Unsupported codec for output stream." 
 
There are certain formats that need to have certain parameters defined before they will work properly. In such cases you must specify the values explicitly in your request. For example for 3GP format you should use audio codec libamr_nb.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00107 mean?

 

The error message ECOM00001 translates to "Unknown encoder   ." 
 
You'll receive this error when you've specified a output codec that encoding.com does not support. Please check if the codec you've requested is part of our the services that we offer. Scroll to the bottom of our page http://www.encoding.com/ and plug in your source
 More -->

 

The error message ECOM00001 translates to "Unknown encoder ." 
 
You'll receive this error when you've specified a output codec that encoding.com does not support. Please check if the codec you've requested is part of our the services that we offer. Scroll to the bottom of our page http://www.encoding.com/ and plug in your source and output formats to see if its legit.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00106 mean?

 

The error message ECOM00106 translates to "Error while opening codec for output stream." 
 
It is entirely possible to create tasks that just don't meet the specs for certain codecs. Please watch for this caveat. Please ensure that the specified parameters (bit rate, audio sampling rate, number of audio channels) meet the needs of the specified codec.
 More -->

 

The error message ECOM00106 translates to "Error while opening codec for output stream." 
 
It is entirely possible to create tasks that just don't meet the specs for certain codecs. Please watch for this caveat. Please ensure that the specified parameters (bit rate, audio sampling rate, number of audio channels) meet the needs of the specified codec. For example: when encoding to 3GP format, you should use libamr_nb audio codec with sample rate 8000 Hz, 1 audio channel, and audio bitrate one of: 4.75k, 5.15k, 5.9k, 6.7k, 7.4k, 7.95k, 10.2k or 12.2k
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00105 mean?

 

The error message ECOM00105 translates to "Crop size must be a multiple of 2." 
 
You'll receive this message when you have chosen crop parameters that are not divisible by 2. Please double check your request for any odd numbers.

 

The error message ECOM00105 translates to "Crop size must be a multiple of 2." 
 
You'll receive this message when you have chosen crop parameters that are not divisible by 2. Please double check your request for any odd numbers.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00104 mean?

 

The error message ECOM00104 translates to "The AWS Access Key Id you provided does not exist." 
 
Frame size must be a multiple of 2 You'll receive this message when you've specified an invalid width or height value in your request. When specifying size as WxH, both width and height must be multiple of 2.
 More -->

 

The error message ECOM00104 translates to "The AWS Access Key Id you provided does not exist." 
 
Frame size must be a multiple of 2 You'll receive this message when you've specified an invalid width or height value in your request. When specifying size as WxH, both width and height must be multiple of 2.
 
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00103 mean?

 

The error message ECOM00103 translates to "Incorrect frame size." 
 
Please check the frame size is correctly specified in your request. Make sure that it does not contain whitespaces or zero dimensions (for example 0x240). It would also be useful for you to inspect your source video to ensure that the video you are submitting has the
 More -->

 

The error message ECOM00103 translates to "Incorrect frame size." 
 
Please check the frame size is correctly specified in your request. Make sure that it does not contain whitespaces or zero dimensions (for example 0x240). It would also be useful for you to inspect your source video to ensure that the video you are submitting has the correct dimensions specified in your source media.

 

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00102 mean?

 

The error message ECOM00102 translates to "No audio or video streams available." 
 
You will encounter this error if you are trying to decode a video format that our encoder does not understand. Please take a moment to view our supported format list and ensure that you are pulling from our trusted format list: http://www.encoding.com/wdocs/SourceFileFormats.
 More -->

 

The error message ECOM00102 translates to "No audio or video streams available." 
 
You will encounter this error if you are trying to decode a video format that our encoder does not understand. Please take a moment to view our supported format list and ensure that you are pulling from our trusted format list: http://www.encoding.com/wdocs/SourceFileFormats.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00101 mean?

 

The error message ECOM00101 translates to "Could not write header for output file." 
 
The specified codec that you have selected does not support what you are requested of it as an output file. You may be including or omitting certain parameters that are not supported for this format. In addition to that, you may need special
 More -->

 

The error message ECOM00101 translates to "Could not write header for output file." 
 
The specified codec that you have selected does not support what you are requested of it as an output file. You may be including or omitting certain parameters that are not supported for this format. In addition to that, you may need special parameters to be specified. Please check if you are explicitly allowed the specified video and audio codecs for this format. For example: the 3GP format requires the libamr_nb audio codec for correct encoding.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00003 mean?

 

The error message ECOM00003 translates to "The specified bucket does not exist ." 
 
Please verify that the source location exists. Our encoding platform believes that this location is invalid.

 

The error message ECOM00003 translates to "The specified bucket does not exist ." 
 
Please verify that the source location exists. Our encoding platform believes that this location is invalid.
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00002 mean?

 

The error message ECOM00002 translates to "Overtime Limit Exceeded." 
 
Overtime Limit Exceeded

 

The error message ECOM00002 translates to "Overtime Limit Exceeded." 
 
Overtime Limit Exceeded
<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

What does error message ECOM00001 mean?

The error message ECOM00001 translates to "The AWS Access Key Id you provided does not exist." 

Please verify you specified the correct AWS key and it is properly encoded in the URL. If you still experience this problem, please contact customer support.

The error message ECOM00001 translates to "The AWS Access Key Id you provided does not exist." 

Please verify you specified the correct AWS key and it is properly encoded in the URL. If you still experience this problem, please contact customer support.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Correct MIME types for serving video files

We test video playback on a variety of devices, from Mac and Windows PCs, to all the various mobile phone platforms available today. One critical issue that comes up often is that the hosting server has not set the MIME types for the video type. A typical error message for this would be "unknown application/octet-stream". Here is a list

 More -->

We test video playback on a variety of devices, from Mac and Windows PCs, to all the various mobile phone platforms available today. One critical issue that comes up often is that the hosting server has not set the MIME types for the video type. A typical error message for this would be "unknown application/octet-stream". Here is a list of many common formats we encounter.


Video Type Extension MIME Type
Flash .flv video/x-flv
MPEG-4 .mp4 video/mp4
iPhone Index .m3u8 application/x-mpegURL
iPhone Segment .ts video/MP2T
3GP Mobile .3gp video/3gpp
QuickTime .mov video/quicktime
A/V Interleave .avi video/x-msvideo
Windows Media .wmv video/x-ms-wmv

IMPORTANT: You will need to configure your ftp server to these MIME types for them to be properly recognized by their respective playback devices.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 3 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

iPhone streaming creating TAR file on output

With TAR output is set to OFF, and should see .m3u8 pointers and .ts segment files populate your output directory. The trick is correctly formatting the output filepath. You have to make sure your output filepath has a filename WITHOUT a 3-character file extension. I had this same problem because I either defined only the output directory, or had

 More -->

With TAR output is set to OFF, and should see .m3u8 pointers and .ts segment files populate your output directory. The trick is correctly formatting the output filepath. You have to make sure your output filepath has a filename WITHOUT a 3-character file extension. I had this same problem because I either defined only the output directory, or had an output filename with .m3u on it. In both cases that will force a TAR output even if you have set it to off. SAMPLES: To get your segments, a correct output filepath should look something like this: http://yourbucket.s3.amazonaws.com/iphonetest/outputfilename ftp://username:password@ftp.yourserver.net/iphonetest/outputfilename

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Why does the Watch Folder encode the same video over and over?

If you have your Watch Folder frequency set to a short time interval (e.g 5 minutes) and you are uploading a video file to your watch folder that takes more than 5 minutes to upload it is possible for our system to start encoding the video file before it is uploaded and produce partial/duplicate encoding results. To resolve this simply  More -->
If you have your Watch Folder frequency set to a short time interval (e.g 5 minutes) and you are uploading a video file to your watch folder that takes more than 5 minutes to upload it is possible for our system to start encoding the video file before it is uploaded and produce partial/duplicate encoding results. To resolve this simply set your time interval for a longer frequency (e.g 1 hour) while you are uploading your source video content. <-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Why do I receive ‘Permission denied’ or ‘No such file or directory’ errors when using SFTP?

The most common error is specifying incorrect SFTP URLs for files located in your home directory. You must specify full directory path in your URL: sftp://user:password@your-host.com/home/user/video/file.ext Another common issue is missing files! Check the file is there, and the path for encoding.com is correct. If you continue to experience issues, don't hesitate to email helpdesk@encoding.com.

The most common error is specifying incorrect SFTP URLs for files located in your home directory. You must specify full directory path in your URL: sftp://user:password@your-host.com/home/user/video/file.ext Another common issue is missing files! Check the file is there, and the path for encoding.com is correct. If you continue to experience issues, don't hesitate to email helpdesk@encoding.com.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 3 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

How do I correct issues with “Content-Disposition: attachment” header defined on Amazon S3 accounts?

If you're having issues with S3 storage forcing a download when viewing the URL, you can correct this issue very easily by specifying a custom content type. Simply append &content_type= to your S3 destination. For example: http://dbucketname.destination.s3.amazonaws.com/no_ext_file_with_cont_type?acl=public-read&content_type=video/mp4D
If you're having issues with S3 storage forcing a download when viewing the URL, you can correct this issue very easily by specifying a custom content type. Simply append &content_type= to your S3 destination. For example: http://dbucketname.destination.s3.amazonaws.com/no_ext_file_with_cont_type?acl=public-read&content_type=video/mp4D <-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

iPhone_streaming preset gives me a long error everytime, why?

If a user is experiencing an issue using the iphone_streaming task/preset (see snippet of the full error read out below), this error is easily resolved by setting the audio_sample_rate . Apple recommends the audio_sample_rate is set to 22050 , however, it could potentially be set to: 8000, 11025, 16000, 22050, 32000, 44100, 48000 .


Encoder error:

 More -->

If a user is experiencing an issue using the iphone_streaming task/preset (see snippet of the full error read out below), this error is easily resolved by setting the audio_sample_rate. Apple recommends the audio_sample_rate is set to 22050, however, it could potentially be set to: 8000, 11025, 16000, 22050, 32000, 44100, 48000.


Encoder error: FFmpeg version SVN-r21449, Copyright (c) 2000-2010 Fabrice Bellard, et al.   built on Feb  3 2010 06:48:05 with gcc 4.4.0 20090514 (Red Hat 4.4.0-6)   configuration: --prefix=/usr/local/ffmpeg/21449 --enable-shared --enable-gpl --enable-version3 --enable-nonfree --disable-ffserver --enable-postproc --enable-pthreads --enable-memalign-hack --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfaac --enable-libfaad --enable-libgsm --enable-libmp3lame --enable-libvorbis --enable-libx264 --enable-libxvid   libavutil     50. 7. 0 / 50. 7. 0   libavcodec    52.48. 0 / 52.48. 0   libavformat   52.47. 0 / 52.47. 0   libavdevice   52. 2. 0 / 52. 2. 0   libswscale     0. 9. 0 /  0. 9. 0   libpostproc   51. 2. 0 / 51. 2. 0 [mpeg @ 0x806b3e0]MAX_READ_SIZE:5000000 reached  Seems stream 0 codec frame rate differs from container frame rate: 50.00 (50/1) -> 25.00 (25/1) Input #0, mpeg, from '/mnt/vhosts/default/code/tmp/source_1506155':   Duration: 00:03:33.19, start: 0.164600, bitrate: 15775 kb/s     Stream #0.0[0x1e0]: Video: mpeg2video, yuv420p, 720x480 [PAR 32:27 DAR 16:9], 15000 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc     Stream #0.1[0x1c0]: Audio: mp2, 48000 Hz, 2 channels, s16, 384 kb/s [mp3 @ 0x8074560]sample rate not set Output #0, mp3, to '/mnt/vhosts/default/code/tmp/converted_6272009.mp3':     Stream #0.0: Audio: libmp3lame, 2 channels, s16, 64 kb/s Stream mapping:   Stream #0.1 -> #0.0 Could not write header for output file #0 (incorrect codec parameters ?) Encoder error: FFmpeg version SVN-.... ... <-- Hide

tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

The Desktop Application tells me that I have a Bad User ID / API key

The Desktop Application requires you to plug in a few details before you can start encoding video. If you are receiving this error, stop for a moment and verify a few items. You can pull all the required information from your login page @ encoding.com. Login and go to the 'My Account' section of the user interface.

1) In the

 More -->

The Desktop Application requires you to plug in a few details before you can start encoding video. If you are receiving this error, stop for a moment and verify a few items. You can pull all the required information from your login page @ encoding.com. Login and go to the 'My Account' section of the user interface.

1) In the File menu, select Preferences.
2) Ensure that the UserID is a numerical value as opposed to your username.
3) Cross reference the API key with the value from the 'My Account' section of your login page. Make sure this is correct.
4) Hit SAVE! You're done. Restart any and all jobs and see if the issue corrects itself.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 2 times):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Error 425: Can’t open data connection/Download error: RETR: Response 425

The Error 425 is most often displayed when you have attempted to provide encoding.com a source FTP location that only supports Passive FTP mode. If you are using a watch folder, check the box that says "Passive FTP Mode" in the ftp watch folder set up If you are adding an individual file through the web interface or API you  More -->
The Error 425 is most often displayed when you have attempted to provide encoding.com a source FTP location that only supports Passive FTP mode. If you are using a watch folder, check the box that says "Passive FTP Mode" in the ftp watch folder set up If you are adding an individual file through the web interface or API you can append ?passive=yes to the end of your source or destination string: ftp://user:pass@ftphost.tld/path/to/your/file.ext?passive=yes <-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Encoding was not completed: notice: width or height not divisible by 16

This error is returned when you have attempted to encode a video using our VP6 preset and both the height and width are not divisible by 16.  For more information see our article on recommended Flash output dimensions.
This error is returned when you have attempted to encode a video using our VP6 preset and both the height and width are not divisible by 16.  For more information see our article on recommended Flash output dimensions. <-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Download error: bind(port=0) failed: Cannot assign requested address

'Download error: bind(port=0) failed: Cannot assign requested address' is an error which most commonly occurs when you have attempted to provide encoding.com a source FTP location that only supports Passive FTP mode. So, If you are using a watch folder, check the box that says "Passive FTP Mode" in the ftp watch folder set up If you are adding  More -->
'Download error: bind(port=0) failed: Cannot assign requested address' is an error which most commonly occurs when you have attempted to provide encoding.com a source FTP location that only supports Passive FTP mode. So, If you are using a watch folder, check the box that says "Passive FTP Mode" in the ftp watch folder set up If you are adding an individual file through the web interface or API you can append ?passive=yes to the end of your source or destination string: Example: ftp://user:pass@ftphost.tld/path/to/your/file.ext?passive=yes <-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Wrong UserID or UserKey

If you've received this error, then the wrong UserID is matched with the wrong UserKey. Please log into your user account to verify that you are using the correct key.

If you've received this error, then the wrong UserID is matched with the wrong UserKey. Please log into your user account to verify that you are using the correct key.

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Wrong Media ID

If you've received the 'Wrong Media ID' error, then the media with such ID was not found. Suggested API Actions: UpdateMedia, GetStatus

If you've received the 'Wrong Media ID' error, then the media with such ID was not found. Suggested API Actions: UpdateMedia, GetStatus

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter

Source file is not indicated

If you've received the 'Source file is not indicated' error message then the SourceFile parameter is empty. Suggestion API Actions: AddMedia, UpdateMedia

If you've received the 'Source file is not indicated' error message then the SourceFile parameter is empty. Suggestion API Actions: AddMedia, UpdateMedia

<-- Hide
tools: email  |  print  |  share  |  click to rate (rated 1 time):
  • BlinkList
  • Del.icio.us
  • Digg
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • MySpace
  • Newsvine
  • Reddit
  • Sphinn
  • Technorati
  • Twitter