You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Doc_BoxAlgorithm_GenericStreamWriter.rst 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .. _Doc_BoxAlgorithm_GenericStreamWriter:
  2. Generic stream writer
  3. =====================
  4. .. container:: attribution
  5. :Author:
  6. Yann Renard
  7. :Company:
  8. INRIA
  9. .. image:: images/Doc_BoxAlgorithm_GenericStreamWriter.png
  10. This box is able to dump any OpenViBE stream into a binary file. In the cacse where this box
  11. would have multiple inputs, the streams would be multiplexed in the file. Such file can
  12. be read back with the :ref:`Doc_BoxAlgorithm_GenericStreamReader`
  13. Inputs
  14. ------
  15. .. csv-table::
  16. :header: "Input Name", "Stream Type"
  17. "Input Signal", "Signal"
  18. "Input Stimulations", "Stimulations"
  19. You can add any input you want to this box depending on the number of streams you want to dump.
  20. In the cacse where this box would have multiple inputs, the streams would be multiplexed in the file.
  21. Input Signal
  22. ~~~~~~~~~~~~
  23. The default input.
  24. **Note: it important to correctly configure the type of the inputs**. That information will be
  25. used by the :ref:`Doc_BoxAlgorithm_GenericStreamReader` to map the contained streams to its outputs.
  26. .. _Doc_BoxAlgorithm_GenericStreamWriter_Settings:
  27. Settings
  28. --------
  29. .. csv-table::
  30. :header: "Setting Name", "Type", "Default Value"
  31. "Filename", "Filename", ""
  32. "Use compression", "Boolean", "false"
  33. Filename
  34. ~~~~~~~~
  35. This setting points to the file to write the streams to.
  36. - Default value : [ *record-[$core{date}-$core{time}].ov* ]
  37. Use compression
  38. ~~~~~~~~~~~~~~~
  39. Thanks to this setting, you can use compression on each input stream. This means that the basic
  40. structure of the file remains uncompressed but that each stream inside this structure is compressed.
  41. **Note: this is not implemented at the moment**.