Skip to content
View Akczht's full-sized avatar

Block or report Akczht

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. FFmpeg Compilation macOS FFmpeg Compilation macOS
    1
    Compiling FFmpeg with Build Options
    2
    
                  
    3
    This guide outlines the steps to compile FFmpeg with specific build options using the ./configure script.
    4
    
                  
    5
    Prerequisites
  2. Renames files in a directory using n... Renames files in a directory using names from a text file.
    1
    import os
    2
    import pathlib
    3
    
                  
    4
    def rename_files(directory, names_file, add_numbers=False, keep_extension=True):
    5
      """Renames files in a directory using names from a text file, sorting files by name, optionally adding numbers with leading zeros, and optionally keeping extensions.
  3. trims videos from start for a few s... trims videos from start for a few seconds
    1
    #!/bin/bash
    2
    
                  
    3
    # Set default values for input and output formats
    4
    input_format="mkv"
    5
    output_format="mkv"