Skip to content
View Akczht's full-sized avatar

Block or report Akczht

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. a script to convert all the folders ... a script to convert all the folders in a directory to CBZ files using 7-zip
    1
    import os
    2
    import subprocess
    3
    
                  
    4
    def convert_folders_to_cbz(folder_path=os.getcwd()):
    5
        # Get all folders in the specified directory
  4. base dependencies for ntfs-3g base dependencies for ntfs-3g
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    set -e
    4
    
                  
    5
    findcd() {
  5. A script to run ffmpeg on all the fi... A script to run ffmpeg on all the files in a folder and remux videos also you can add other files in the sec folder
    1
    #!/bin/bash
    2
    set -e
    3
    
                  
    4
    # Set input and output file extensions and additional ffmpeg arguments here
    5
    input_ext="mkv"           # Input file extension (e.g., mp4, mkv) without the dot