Skip to content
View apkatsikas's full-sized avatar

Block or report apkatsikas

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
apkatsikas/README.md

Pinned Loading

  1. subcordant Public

    Subcordant is a Discord bot that streams music from your Subsonic-API compatible server.

    Go 2

  2. xctest_pxctest_distributed Public

    Distributed, headless parallel testing for xctest/pxctest

    Python 23 1

  3. Vampire-Computer-People/imdb-enhanced-search Public

    Python 1

  4. Download a portion of a youtube usin...
    1
    import argparse
    2
    import subprocess
    3
    import sys
    4
    
                  
    5
    def create_parser():
  5. ffmpeg-commands.sh
    1
     # Compress using h264 - good for Discord. crf is quality, lower is better and larger
    2
     ffmpeg -i ${FILE_VALUE} -vcodec libx264 -crf 28 ${OUTPUT_VALUE}
    3
     
    4
     # Re-encode video at half resolution
    5
     ffmpeg -i ${FILE_VALUE} -vf "scale=iw/2:ih/2" ${OUTPUT_VALUE}
  6. use Python, ffmpeg and imagemagick t...
    1
    # Requires ffmpeg and imagemagick to be on the path
    2
    # Usage example make_gif ".\input.mkv" -o output.gif -s 00:00:12.333 -d 00:00:05.666 -w 1024 -f 12 -t 1.5
    3
    
                  
    4
    import argparse
    5
    import subprocess