home.social

#comparisson — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #comparisson, aggregated by home.social.

  1. #TIL You can start two videos at once with #mpv, playing them stacked vertically or horizontally:

    `mpv --lavfi-complex="[vid1][vid2]vstack[vo]; \
    [aid1][aid2]amix[ao]" \
    video1.mkv \
    --external-file=video2.mkv`

    And you can even go one further, and start one of them with a delay:

    `mpv --lavfi-complex="[vid1]tpad=start_duration=4[v2d]; \
    [vid2][v2d]vstack[vo]; \
    [aid1]adelay=4000:all=1[a2d]; \
    [aid2][a2d]amix[ao]" \
    video1.mkv \
    --external-file=video2.mkv`

    Pretty neat!

    #linux #cli #mpv #video #comparisson #oneliner