Skip to content

Instantly share code, notes, and snippets.

View syonekura's full-sized avatar

Sebastian Yonekura syonekura

  • Amazon
  • Arlington, VA
View GitHub Profile
@syonekura
syonekura / Install NVIDIA Driver and CUDA.md
Created October 14, 2019 00:53 — forked from wangruohui/Install NVIDIA Driver and CUDA.md
Install NVIDIA Driver and CUDA on Ubuntu / CentOS / Fedora Linux OS
@syonekura
syonekura / cuda_installation_on_ubuntu_18.04
Created March 8, 2019 13:02 — forked from Mahedi-61/cuda_11.8_installation_on_Ubuntu_22.04
cuda 9.0 complete installation procedure for ubuntu 18.04 LTS
#!/bin/bash
## This gist contains step by step instructions to install cuda v9.0 and cudnn 7.2 in ubuntu 18.04
### steps ####
# verify the system has a cuda-capable gpu
# download and install the nvidia cuda toolkit and cudnn
# setup environmental variables
# verify the installation
###
@syonekura
syonekura / encode.sh
Created February 9, 2019 13:52 — forked from mikoim/README.md
YouTube recommended encoding settings on ffmpeg (+ libx264)
#/bin/sh
ffmpeg -i input -c:v libx264 -preset slow -profile:v high -crf 18 -coder 1 -pix_fmt yuv420p -movflags +faststart -g 30 -bf 2 -c:a aac -b:a 384k -profile:a aac_low output