Skip to content

Instantly share code, notes, and snippets.

View aattk's full-sized avatar
🦁
Working

Alpaslan Tetik aattk

🦁
Working
View GitHub Profile
@nhtera
nhtera / ts-to-mp4.py
Created April 9, 2017 18:42
Convert all videos .ts to .mp4 using ffmpeg
#!/usr/local/opt/python/bin/python2.7
# Required ffmpeg
import os
import sys
walk_dir = os.getcwd()
count = 0
for root, subdirs, files in os.walk(walk_dir):
for file in files:
@Lewiscowles1986
Lewiscowles1986 / rPi3-ap-setup.sh
Last active March 31, 2025 15:46
Raspberry Pi 3 access-point-setup
#!/bin/bash
#
# This version uses September 2017 august stretch image, please use this image
#
if [ "$EUID" -ne 0 ]
then echo "Must be root"
exit
fi