This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================================================= | |
| # Скрипт для конвертации видео в HLS формат (TS-Video) | |
| # Использование: ./convert-to-hls.sh input.avi [input2.avi ...] | |
| # ============================================================================= | |
| # Цвета для вывода | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| YELLOW='\033[1;33m' | |
| NC='\033[0m' # No Color |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (typeof window !== 'undefined') { | |
| console.log('You are on the browser') | |
| // 👉️ can use localStorage here | |
| } else { | |
| console.log('You are on the server') | |
| // 👉️ can't use localStorage | |
| } | |
| // articles: https://clck.ru/eyFce |