I hope FFmpeg's Twitter won't Cancel me for This...

แชร์
ฝัง

ความคิดเห็น • 69

  • @Xerangelo
    @Xerangelo 20 วันที่ผ่านมา +39

    5:00 Can confirm, almost went insane implementing the library, and then I gave up and then simply called ffmpeg executable through a pipe from C.

    • @cthecheese1620
      @cthecheese1620 20 วันที่ผ่านมา +4

      That's why I chose to buckle down into it, ffmpeg is used in so many systems that I figured it would be a good resume piece to write something using ffmpeg as a library
      At the very least, you'll know I'm persistent and can work in complex environments lol

    • @jonohiggs
      @jonohiggs 19 วันที่ผ่านมา +7

      @@cthecheese1620 I managed to write an ffmpeg encoder that captured an opengl framebuffer, it was 200 lines of code that cost me an entire week of repeatedly hitting my head into a wall

    • @poderosoexcalibur-yp3kl
      @poderosoexcalibur-yp3kl 19 วันที่ผ่านมา +5

      I embedded ffmpeg as a lib in a mobile app, fried my phone and served it with fries and soda

    • @mobkiller111
      @mobkiller111 19 วันที่ผ่านมา +1

      Tried that yesterday for like 8 hours... I just wanted some more logging for the video encoding.

  • @shrddr
    @shrddr 20 วันที่ผ่านมา +36

    LOOKS LIKE WE ARE ALIVE

  • @bashbarash1148
    @bashbarash1148 20 วันที่ผ่านมา +36

    ffmpeg arguments look like a separate programming language with its own abstractions and programming patterns

    • @dutchdykefinger
      @dutchdykefinger 19 วันที่ผ่านมา

      to be fair ,many linux CLI programs do lol

    • @OuterProduct351
      @OuterProduct351 18 วันที่ผ่านมา +4

      with chatgipity writing the commands, ffmpeg is really smooth to use with pipes

  • @multicoloredwiz
    @multicoloredwiz 18 วันที่ผ่านมา +6

    Okay, it's insane how good he is at beat boxing holy
    That buffer overrun was so fun to see visualized. I love it

    • @drdca8263
      @drdca8263 17 วันที่ผ่านมา

      Oh wow, I was thinking “yeah he’s shown that he’s pretty good at it before” but then at 1:50:40 or so I saw what you meant

  • @javierflores09
    @javierflores09 20 วันที่ผ่านมา +11

    19:02 "if I was programming in Rust, I would just accept as a slice in here" followed by "I could create a struct but I am kinda lazy so w/e, let me maybe C" made me chuckle lol, kind of an accidental joke

  • @cheebadigga4092
    @cheebadigga4092 19 วันที่ผ่านมา +14

    man C is around 50 years old now and I have like 10ish years of experience with it, but I'm still learning new things just watching your videos

    •  19 วันที่ผ่านมา +1

      C 50 years ago was nothing like it is today

    • @cheebadigga4092
      @cheebadigga4092 19 วันที่ผ่านมา +3

      true but how does that invalidate my point?

    •  19 วันที่ผ่านมา

      you're implying said things are 50 years old when they're not

    • @cheebadigga4092
      @cheebadigga4092 19 วันที่ผ่านมา +4

      C was created in the 70s, so it's 50 years old. There have been a couple of revisions/versions, yes, but that doesn't change the fact that C itself is 50 years old.

    •  19 วันที่ผ่านมา

      C is 50 years old, yes. You said you learned new things today, at a time when C is a completely different language. Chances are those things didn't exist back then.

  • @MyManJohnny
    @MyManJohnny 19 วันที่ผ่านมา +3

    I feel like it would be interesting to not hardcode the tape movement transformation and instead give each step of the animation a function pointer. That way you could have different transformations play during your animation and you could even extend this concept to the cell animation. Also if you decide in the future that you're going to turn this into a library, people would be able to implement their own transformations to finetune the animation to their liking or use the default ones that you've implemented.

  • @manucaouette
    @manucaouette 17 วันที่ผ่านมา +4

    1:40:56 voidf is coming 👀

  • @aniketbisht2823
    @aniketbisht2823 7 วันที่ผ่านมา +1

    18:55 In C++, it's called span. In this case it would be std::span. It's basically a pointer-size pair. But you can also specify the size at compile-time like : std::span. Then it only stores a pointer. CAN YOUR C DO THAT. I think not.

  • @c4llv07e
    @c4llv07e 20 วันที่ผ่านมา +13

    >>1:49:45
    Sometimes I want to see a video "Tsoding without context"

  • @baranjan6969
    @baranjan6969 8 วันที่ผ่านมา

    6:25
    I like how serious tone got here.

  • @omarabuabdullah4862
    @omarabuabdullah4862 20 วันที่ผ่านมา +51

    using blender as a video editor is something cursed.

    • @belst_
      @belst_ 20 วันที่ผ่านมา +17

      blender videoeditor is actually quite decent

    • @txorimorea3869
      @txorimorea3869 20 วันที่ผ่านมา +7

      As is only natural when dealing with such amounts of power.

    • @D-V-O-R-A-K
      @D-V-O-R-A-K 20 วันที่ผ่านมา +1

      using blender for anything is cursed

    • @omarabuabdullah4862
      @omarabuabdullah4862 20 วันที่ผ่านมา +3

      @@D-V-O-R-A-K
      based maya3D user

    • @dutchdykefinger
      @dutchdykefinger 19 วันที่ผ่านมา

      @@D-V-O-R-A-K eevee says hi

  • @aniketbisht2823
    @aniketbisht2823 7 วันที่ผ่านมา

    There is no need to store "resource" pointers in the Plug struct. Plug struct, as far as I understand, stores data that needs to be persistent between reloads, like animation data, but resources like images and fonts (if you're loading/unloading them between reloads) can be pulled out from the Plug struct to be global variables. This way you can add/remove resources without doing that "resize" trick of yours (which only works one way).

  • @berndeckenfels
    @berndeckenfels 18 วันที่ผ่านมา

    With the animation state machine you have a Turing engine again so you can just make it directly evaluate a Tula script :)

  • @neshkeev
    @neshkeev 20 วันที่ผ่านมา +1

    You should've showed how you import the MP4 file into blender, otherwise the stream feels incomplete

  • @hubstrangers3450
    @hubstrangers3450 15 วันที่ผ่านมา

    Thank you.......

  • @TurtleKwitty
    @TurtleKwitty 19 วันที่ผ่านมา

    The more you worked on it the more it felt like it would have been better to just visualize the memory of tula directly rather than a manual animation system haha

  • @christianedouardo
    @christianedouardo 19 วันที่ผ่านมา

    Can you create a task's automate using win32 c api? :)

  • @apppples
    @apppples 19 วันที่ผ่านมา +3

    Is there a chance you can just upload all vods here with no editing? I only ask because I watch everything you stream but as a vod since you stream while I work and I hate having to use twitch. Also I know editing is time consuming.

    • @aaronspeedy7780
      @aaronspeedy7780 19 วันที่ผ่านมา +2

      Recent vods are available on Twitch, and they have no editing. I'm also sure there's a tool to download videos from Twitch

    • @apppples
      @apppples 19 วันที่ผ่านมา

      @@aaronspeedy7780 I watch them all there already. I just don't want to

    • @xravenx24fe
      @xravenx24fe 19 วันที่ผ่านมา +1

      Then what do you want? What you ask for makes no sense, if you really want a copy of a previous stream unedited that you've already seen just because you don't like where it's hosted, you can just download it yourself lol.

    • @apppples
      @apppples 19 วันที่ผ่านมา +1

      @@xravenx24fe I want all of the vods on youtube? Kinda what I said...

    • @animowany111
      @animowany111 17 วันที่ผ่านมา

      @@xravenx24fe Also twitch deletes older vods, youtube doesn't

  • @blackhaze3856
    @blackhaze3856 20 วันที่ผ่านมา +2

    Catfooding.

  • @OuterProduct351
    @OuterProduct351 18 วันที่ผ่านมา

    1:58:03 Totally disagree. ATM I'm hyping on taking other developers code, and violating it into my creation. Understanding other people's code is hard, but it is a skill.

  • @lukehjo
    @lukehjo 20 วันที่ผ่านมา +2

    Crazy.

  • @andrehedesand681
    @andrehedesand681 20 วันที่ผ่านมา +1

    Product types in tula when?

  • @apenaswellignton
    @apenaswellignton 20 วันที่ผ่านมา +1

    Peg Pog Pug Pig Paug

    • @isaactfa
      @isaactfa 20 วันที่ผ่านมา +2

      Peg (me)

  • @thediskostarz
    @thediskostarz 20 วันที่ผ่านมา +1

    nice video as always

  • @thunderdeer6073
    @thunderdeer6073 20 วันที่ผ่านมา +2

    First

  • @yooyo3d
    @yooyo3d 19 วันที่ผ่านมา +2

    Link libavcodec, libavformat and libavutil... Don't be a chicken.

  • @christianedouardo
    @christianedouardo 19 วันที่ผ่านมา

    @kitkuv who'S
    ?

  • @rogo7330
    @rogo7330 19 วันที่ผ่านมา

    HP_REQUIRING_TO_PUT_NEW_INK

  • @miguel_lasheras
    @miguel_lasheras 19 วันที่ผ่านมา

    ijopetamién