Skip to content
View DusanBrejka's full-sized avatar
Block or Report

Block or report DusanBrejka

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

  1. FFMPEG - map of formats to default ... FFMPEG - map of formats to default mime types
    1
    // INCOMPLETE
    2
    
                  
    3
    // This command will give you list of available FFMPEG formats and their default Mime types
    4
    // ffmpeg -formats -hide_banner | tail -n +5 | cut -c5- | cut -d' ' -f1 | xargs -i{} ffmpeg -hide_banner -h demuxer={} | pcregrep -o2 -o4 -M  '(Muxer (\w+) )|(Mime type:( .*).)'
    5
    // And then parse the output with regex to JSON format in JavaScript for example:
  2. node-fluent-ffmpeg - Execute Custom ... node-fluent-ffmpeg - Execute Custom FFMPEG arguments hack
    1
    /*
    2
      As at the time of writing this Fluent ffmpeg-API for node.js has not been updated 
    3
      for years and still does not support custom FFMPEG attributes, the only solutions
    4
      are either forking it or resorting to hacks like this one...
    5
  3. VideoContext VideoContext Public

    Forked from bbc/VideoContext

    An experimental HTML5 & WebGL video composition and rendering API.

    JavaScript