leandromoreira / ffmpeg-libav-tutorial

FFmpeg libav tutorial - learn how media works from basic to transmuxing, transcoding and more. Translations: πŸ‡ΊπŸ‡Έ πŸ‡¨πŸ‡³ πŸ‡°πŸ‡· πŸ‡ͺπŸ‡Έ πŸ‡»πŸ‡³ πŸ‡§πŸ‡·
https://github.com/leandromoreira/ffmpeg-libav-tutorial
BSD 3-Clause "New" or "Revised" License
9.78k stars 937 forks source link

A simple question unrelated to this nice tutorial #108

Closed shaoeric closed 2 years ago

shaoeric commented 2 years ago

Great work for me! Thanks for your sharing, but can i learn about how to draw the pictures in the repo? any tools?

leandromoreira commented 2 years ago

Thanks for the kind words, πŸ˜„ I really appreciate.

In my case, I just draw into paper, took pictures (applied black and white filters), and compose them using google slides! :) (tbh I think, there must be other better methods to do it)

But if you just want to draw some flows, components, ... I'd point you to use mermaid-js instead, github supports it now, and it's really simple.

  graph TD;
      A-->B;
      A-->C;
      B-->D;
      C-->D;
sequenceDiagram
    participant Alice
    participant Bob
    Alice->>Bob: Hi Bob
    Bob->>Alice: Hi Alice
stateDiagram
    [*] --> Still
    Still --> [*]

    Still --> Moving
    Moving --> Still
    Moving --> Crash
    Crash --> [*]
shaoeric commented 2 years ago

very helpful for me :)