Skip to content
View IanoNjuguna's full-sized avatar
🐳
🐳

Block or report IanoNjuguna

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. developer-experience developer-experience Public

    Forked from IntersectMBO/developer-experience

    This repo is managed by Intersect on behalf of the Developer Advocates.

    TypeScript

  2. bash_scripting bash_scripting Public

    Bash

    1 1

  3. Additional Configurations For My Dot... Additional Configurations For My Dot Vimrc File
    1
    " Customise tabs length
    2
    set tabstop=4 shiftwidth=4
    3
    
                  
    4
    " Indent automatically
    5
    set autoindent
  4. When executed, this batch script con... When executed, this batch script converts all video files (mp4) in a folder to audio files (mp3) and stores them in the output\ folder (automatically created). NOTE: You should have ffmpeg installed before execution.
    1
    echo off
    2
    mkdir outputs
    3
    for %%a in ("*.mp4") do ffmpeg -i "%%a" -b:a 192K -vn "outputs\%%~na.mp3"
    4
    pause