Skip to content
View fs-99's full-sized avatar

Block or report fs-99

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. fs-99.github.io fs-99.github.io Public

    SCSS

  2. project-ng project-ng Public

    Training a hundred operating system design experts

    Rust

  3. Script for converting videos the way... Script for converting videos the way Davinci Resolve Linux wants them
    1
    mkdir transcoded;
    2
    for i in *.mp4;
    3
      do ffmpeg -i "$i" -map 0:0 -map 0:1 -map 0:2 -vcodec mjpeg -q:v 2 -c:a pcm_s16be -q:a 0 -f mov "transcoded/${i%.*}.mov";
    4
    done