inputs.js.html 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>JSDoc: Source: options/inputs.js</title>
  6. <script src="scripts/prettify/prettify.js"> </script>
  7. <script src="scripts/prettify/lang-css.js"> </script>
  8. <!--[if lt IE 9]>
  9. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  10. <![endif]-->
  11. <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
  12. <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
  13. </head>
  14. <body>
  15. <div id="main">
  16. <h1 class="page-title">Source: options/inputs.js</h1>
  17. <section>
  18. <article>
  19. <pre class="prettyprint source linenums"><code>/*jshint node:true*/
  20. 'use strict';
  21. var utils = require('../utils');
  22. /*
  23. *! Input-related methods
  24. */
  25. module.exports = function(proto) {
  26. /**
  27. * Add an input to command
  28. *
  29. * Also switches "current input", that is the input that will be affected
  30. * by subsequent input-related methods.
  31. *
  32. * Note: only one stream input is supported for now.
  33. *
  34. * @method FfmpegCommand#input
  35. * @category Input
  36. * @aliases mergeAdd,addInput
  37. *
  38. * @param {String|Readable} source input file path or readable stream
  39. * @return FfmpegCommand
  40. */
  41. proto.mergeAdd =
  42. proto.addInput =
  43. proto.input = function(source) {
  44. var isFile = false;
  45. if (typeof source !== 'string') {
  46. if (!('readable' in source) || !(source.readable)) {
  47. throw new Error('Invalid input');
  48. }
  49. var hasInputStream = this._inputs.some(function(input) {
  50. return typeof input.source !== 'string';
  51. });
  52. if (hasInputStream) {
  53. throw new Error('Only one input stream is supported');
  54. }
  55. source.pause();
  56. } else {
  57. var protocol = source.match(/^([a-z]{2,}):/i);
  58. isFile = !protocol || protocol[0] === 'file';
  59. }
  60. this._inputs.push(this._currentInput = {
  61. source: source,
  62. isFile: isFile,
  63. options: utils.args()
  64. });
  65. return this;
  66. };
  67. /**
  68. * Specify input format for the last specified input
  69. *
  70. * @method FfmpegCommand#inputFormat
  71. * @category Input
  72. * @aliases withInputFormat,fromFormat
  73. *
  74. * @param {String} format input format
  75. * @return FfmpegCommand
  76. */
  77. proto.withInputFormat =
  78. proto.inputFormat =
  79. proto.fromFormat = function(format) {
  80. if (!this._currentInput) {
  81. throw new Error('No input specified');
  82. }
  83. this._currentInput.options('-f', format);
  84. return this;
  85. };
  86. /**
  87. * Specify input FPS for the last specified input
  88. * (only valid for raw video formats)
  89. *
  90. * @method FfmpegCommand#inputFps
  91. * @category Input
  92. * @aliases withInputFps,withInputFPS,withFpsInput,withFPSInput,inputFPS,inputFps,fpsInput
  93. *
  94. * @param {Number} fps input FPS
  95. * @return FfmpegCommand
  96. */
  97. proto.withInputFps =
  98. proto.withInputFPS =
  99. proto.withFpsInput =
  100. proto.withFPSInput =
  101. proto.inputFPS =
  102. proto.inputFps =
  103. proto.fpsInput =
  104. proto.FPSInput = function(fps) {
  105. if (!this._currentInput) {
  106. throw new Error('No input specified');
  107. }
  108. this._currentInput.options('-r', fps);
  109. return this;
  110. };
  111. /**
  112. * Use native framerate for the last specified input
  113. *
  114. * @method FfmpegCommand#native
  115. * @category Input
  116. * @aliases nativeFramerate,withNativeFramerate
  117. *
  118. * @return FfmmegCommand
  119. */
  120. proto.nativeFramerate =
  121. proto.withNativeFramerate =
  122. proto.native = function() {
  123. if (!this._currentInput) {
  124. throw new Error('No input specified');
  125. }
  126. this._currentInput.options('-re');
  127. return this;
  128. };
  129. /**
  130. * Specify input seek time for the last specified input
  131. *
  132. * @method FfmpegCommand#seekInput
  133. * @category Input
  134. * @aliases setStartTime,seekTo
  135. *
  136. * @param {String|Number} seek seek time in seconds or as a '[hh:[mm:]]ss[.xxx]' string
  137. * @return FfmpegCommand
  138. */
  139. proto.setStartTime =
  140. proto.seekInput = function(seek) {
  141. if (!this._currentInput) {
  142. throw new Error('No input specified');
  143. }
  144. this._currentInput.options('-ss', seek);
  145. return this;
  146. };
  147. /**
  148. * Loop over the last specified input
  149. *
  150. * @method FfmpegCommand#loop
  151. * @category Input
  152. *
  153. * @param {String|Number} [duration] loop duration in seconds or as a '[[hh:]mm:]ss[.xxx]' string
  154. * @return FfmpegCommand
  155. */
  156. proto.loop = function(duration) {
  157. if (!this._currentInput) {
  158. throw new Error('No input specified');
  159. }
  160. this._currentInput.options('-loop', '1');
  161. if (typeof duration !== 'undefined') {
  162. this.duration(duration);
  163. }
  164. return this;
  165. };
  166. };
  167. </code></pre>
  168. </article>
  169. </section>
  170. </div>
  171. <nav>
  172. <h2><a href="index.html">Index</a></h2><ul><li><a href="index.html#installation">Installation</a></li><ul></ul><li><a href="index.html#usage">Usage</a></li><ul><li><a href="index.html#prerequisites">Prerequisites</a></li><li><a href="index.html#creating-an-ffmpeg-command">Creating an FFmpeg command</a></li><li><a href="index.html#specifying-inputs">Specifying inputs</a></li><li><a href="index.html#input-options">Input options</a></li><li><a href="index.html#audio-options">Audio options</a></li><li><a href="index.html#video-options">Video options</a></li><li><a href="index.html#video-frame-size-options">Video frame size options</a></li><li><a href="index.html#specifying-multiple-outputs">Specifying multiple outputs</a></li><li><a href="index.html#output-options">Output options</a></li><li><a href="index.html#miscellaneous-options">Miscellaneous options</a></li><li><a href="index.html#setting-event-handlers">Setting event handlers</a></li><li><a href="index.html#starting-ffmpeg-processing">Starting FFmpeg processing</a></li><li><a href="index.html#controlling-the-ffmpeg-process">Controlling the FFmpeg process</a></li><li><a href="index.html#reading-video-metadata">Reading video metadata</a></li><li><a href="index.html#querying-ffmpeg-capabilities">Querying ffmpeg capabilities</a></li><li><a href="index.html#cloning-an-ffmpegcommand">Cloning an FfmpegCommand</a></li></ul><li><a href="index.html#contributing">Contributing</a></li><ul><li><a href="index.html#code-contributions">Code contributions</a></li><li><a href="index.html#documentation-contributions">Documentation contributions</a></li><li><a href="index.html#updating-the-documentation">Updating the documentation</a></li><li><a href="index.html#running-tests">Running tests</a></li></ul><li><a href="index.html#main-contributors">Main contributors</a></li><ul></ul><li><a href="index.html#license">License</a></li><ul></ul></ul><h3>Classes</h3><ul><li><a href="FfmpegCommand.html">FfmpegCommand</a></li><ul><li> <a href="FfmpegCommand.html#audio-methods">Audio methods</a></li><li> <a href="FfmpegCommand.html#capabilities-methods">Capabilities methods</a></li><li> <a href="FfmpegCommand.html#custom-options-methods">Custom options methods</a></li><li> <a href="FfmpegCommand.html#input-methods">Input methods</a></li><li> <a href="FfmpegCommand.html#metadata-methods">Metadata methods</a></li><li> <a href="FfmpegCommand.html#miscellaneous-methods">Miscellaneous methods</a></li><li> <a href="FfmpegCommand.html#other-methods">Other methods</a></li><li> <a href="FfmpegCommand.html#output-methods">Output methods</a></li><li> <a href="FfmpegCommand.html#processing-methods">Processing methods</a></li><li> <a href="FfmpegCommand.html#video-methods">Video methods</a></li><li> <a href="FfmpegCommand.html#video-size-methods">Video size methods</a></li></ul></ul>
  173. </nav>
  174. <br clear="both">
  175. <footer>
  176. Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha5</a> on Tue Jul 08 2014 21:22:19 GMT+0200 (CEST)
  177. </footer>
  178. <script> prettyPrint(); </script>
  179. <script src="scripts/linenumber.js"> </script>
  180. </body>
  181. </html>