Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 773 Bytes

questions.md

File metadata and controls

17 lines (13 loc) · 773 Bytes
  1. Clean core/plugins separation
The core of GStreamer is essentially media-agnostic. It only knows about bytes and blocks, and only
contains basic elements. The core of GStreamer is even functional enough to implement
low-level system tools, like cp
\ \ What does this exactly mean?
  1. Queries Queries allow applications to request information such as duration or current playback position from the pipeline. Queries are always answered synchronously. How? Why?

  2. Keyboard Interrupts in Python Pressing Ctrl+C when the pipeline is in playing state immediately ends playback in C. How do we achieve this in Python? Possibly using try-catch?

  3. Pipelines manage synchronization for their children What does this mean exactly?