Skip to content

Instantly share code, notes, and snippets.

View Erim32's full-sized avatar

Rémi M Erim32

  • Toulouse
View GitHub Profile
@Erim32
Erim32 / main.py
Created August 19, 2023 22:38 — forked from codingforentrepreneurs/main.py
Transcribe videos with OpenAI Whisper and Python
# Video https://youtube.com/shorts/MNUdPGIjMPw
# Python 3.10
# pip install openai-whisper
# pip install git+https://github.com/openai/whisper.git
# install ffmpeg
# brew install ffmpeg
import subprocess
import whisper
model = whisper.load_model("base")
@Erim32
Erim32 / git_fork_contextual_menu_eng.reg
Created August 13, 2023 12:03
Scripts to add Git Fork software to windows contextual menu to open a respository. ( english and french version)
Windows Registry Editor Version 5.00
; english version
; This will make it appear when you right click ON a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CLASSES_ROOT\Directory\shell\gitfork]
@="Open with Git Fork"
"Icon"="\"C:\\Users\\Remi\\AppData\\Local\\Fork\\Fork.exe\",0"
[HKEY_CLASSES_ROOT\Directory\shell\gitfork\command]
@="\"C:\\Users\\Remi\\AppData\\Local\\Fork\\Fork.exe\" \"%1\""
@Erim32
Erim32 / readme.md
Created January 29, 2023 17:50 — forked from aspose-com-gists/readme.md
Convert SVG to PNG in Python
@Erim32
Erim32 / crous_connect.sh
Created April 13, 2018 17:08
Script de connexion automatique aux différents portails web du CROUS.
#!/bin/sh
# crous_connect
#
# Petit script pour se connecter aux services du CROUS
# Auteur d'orgine: mael.valais@univ-tlse3.fr
# Script d'origine: https://gist.github.com/maelvalais/5021908
# Contributeur dernière mise a jour: Rémi M (github.com/Erim32)
# Mis à jour le 13.04.2018
# Version 0.3
@Erim32
Erim32 / kinect-rpi-alsa-install.sh
Created June 6, 2017 21:43
Script pour permettre au Kinect V1 d'etre détectable sour raspbian par Alsa.
#!/bin/sh
# =============================================================================================
#
# Fichier: kinect-rpi-alsa-install.sh
# Description:
# Procedure d'installation pour rendre le Kinect V1 détectable par Alsa comme une source Audio.
# Auteur: Erim32 (https://github.com/Erim32)
# Date: 06/06/2017
#