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

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

Pinned

  1. xctest_pxctest_distributed xctest_pxctest_distributed Public

    Distributed, headless parallel testing for xctest/pxctest

    Python 22 1

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

    Python 1

  3. Download a portion of a youtube usin... Download a portion of a youtube using yt-dlp and ffmpeg - requires Python 3, yt-dlp and ffmpeg (all must be on the path)
    1
    import argparse
    2
    import subprocess
    3
    import sys
    4
    
                  
    5
    def create_parser():
  4. ffmpeg-commands.sh 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}
  5. use Python, ffmpeg and imagemagick t... use Python, ffmpeg and imagemagick to turn your videos in GIFs!
    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
  6. Make a looping SNES OST video Make a looping SNES OST video
    1
    # 1. Use ZSNES to grab the SPC file via the Save SPC Data feature
    2
    # 2. Use VLC to convert the SPC file to .wav (you may need to force stop after some time)
    3
    # 3. Cut the .wav to your desired length
    4
    # 4. Use youtube-dl or something else to get desired video loop (can be very short), try cutting with https://gist.github.com/apkatsikas/f257387139bd25f27c282152729e9c67
    5
    # 5. Remove audio from video via following command