Skip to content

Instantly share code, notes, and snippets.

View rhin0cer0s's full-sized avatar

Christophe Guieu rhin0cer0s

  • Marseille, France
View GitHub Profile
@rhin0cer0s
rhin0cer0s / promox_ova_import.md
Created April 9, 2020 14:11
Proxmox OVA import
  1. create a new VM and delete its virtual drive

  2. inflate the .OVA file which is in fact a .TAR one :

$ tar -xvf <FILENAME>.OVA
<FILENAME>.OVF
<FILENAME>.MF
<FILENAME>[-diskX].VMDK
@rhin0cer0s
rhin0cer0s / myYoutube-dl
Created April 6, 2020 07:59
youtube-dl batch download
youtube-dl -i -a list --download-archive archive.txt
# -i, --ignore-errors : ignore private/unlisted/unreachable videos
# -a, --batch-file FILE : load URLs from file
# -a, --batch-file FILE : keep logs of already downloaded videos
avconv -f image2 -start_number -i <img_pattern_%02d> -r 24 -s hd1080 -vcodec libx264 <output.mp4>