Skip to content

Instantly share code, notes, and snippets.

@ParityError
ParityError / automatic1111.svg
Created March 4, 2023 08:46
automatic1111 logo
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ParityError
ParityError / a1111.svg
Created March 5, 2023 16:18
automatic1111 logo
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ParityError
ParityError / ffmpeg_sync.py
Last active April 21, 2024 17:30
ffmpeg audio/video sync
import subprocess
def extract_audio_ffmpeg(input_file, output_file, start_time, end_time):
command = [
'ffmpeg',
'-i', input_file,
'-ss', start_time, # Start time in HH:MM:SS format
'-to', end_time, # End time in HH:MM:SS format
'-async', '1', # Attempts to correct for any sync issues
'-c:a', 'pcm_s16le', # Uncompressed WAV output
@ParityError
ParityError / pydiag.py
Created April 27, 2024 23:59
Python Diagnostics
#!/usr/bin/env python
import sys
import importlib.util
import os
def print_python_info():
# Print Python version
print("Python Version:")
print(sys.version)