Skip to content
View xdannyrobertsx's full-sized avatar

Block or report xdannyrobertsx

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. uses bash to create .mkv videos for ... uses bash to create .mkv videos for youtube from audio files and album cover
    1
    #!/bin/bash
    2
    for name in *.wav; do
    3
      ffmpeg -loop 1 -framerate 2 -i cover.jpg -i "$name" -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p "${name%.*}.mkv" 
    4
    done 
  2. youtube-dl-javascript youtube-dl-javascript Public

    Downloads Audio from Youtube Videos using Javascript

    JavaScript