For all informations :
ffmpeg -i input.mkv
For informations on streams :
ffprobe -v error -show_entries stream=index,codec_name,codec_type input.mkv
[STREAM]
index=0
codec_name=h264
| #Edit /etc/locale.gen | |
| nano /etc/locale.gen | |
| #Uncomment en_US.UTF-8 UTF-8 | |
| #DO | |
| locale-gen |
| MIT License | |
| Copyright (c) 2018 Manuel Gil | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| @echo off | |
| echo Reminder: This must be run from an elevated command prompt! | |
| pause | |
| net stop wuauserv | |
| net stop cryptSvc | |
| net stop bits | |
| net stop msiserver | |
| ren C:\Windows\SoftwareDistribution SoftwareDistribution.old | |
| ren C:\Windows\System32\catroot2 catroot2.old |
ssh -L port-local:HOSTNAME:port-distant machine-distante
exemple, on veut rediriger le port 32400 (plex) de notre serveur headless vers le port 80 de notre ordinateur
ssh -L 80:127.0.0.1:32400 vps.example.com -N
-N : execute seulement le forward, ne lance pas de terminal distant
-R : inverse le sens (à la place de -L); on parle de remote port forwarding
curl https://rclone.org/install.sh | sudo bash
rclone config
...
| <?php | |
| $characters = ["a", "b", "c", "d", "e", "f", "g", "h", | |
| "i", "j", "k", "l", "m", "n", "o", "p", | |
| "q", "r", "s", "t", "u", "v", "w", "x", | |
| "y", "z", "A", "B", "C", "D", "E", "F", | |
| "G", "H", "I", "J", "K", "L", "M", "N", | |
| "O", "P", "Q", "R", "S", "T", "U", "V", | |
| "W", "X", "Y", "Z", "1", "2", "3", "4", | |
| "5", "6", "7", "8", "9", "0"]; |