- set python version
poetry env use 3.10
- install dependencies
poetry install
create Dockerfile
FROM php:8.2-cli
# INSTALL ZIP TO USE COMPOSER
RUN apt-get update && apt-get install -y \
zlib1g-dev \
libzip-dev \
unzip \
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
#!/usr/bin/env bash | |
START_TIME=$SECONDS | |
set -e | |
echo "-----START GENERATING HLS STREAM-----" | |
# Usage create-vod-hls-gpu.sh SOURCE_FILE [OUTPUT_NAME] | |
[[ ! "${1}" ]] && echo "Usage: create-vod-hls.sh SOURCE_FILE [OUTPUT_NAME]" && exit 1 | |
# comment/add lines here to control which renditions would be created | |
renditions=( |
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
Running Keycloak on docker | |
https://www.keycloak.org/server/all-config#_database |
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
diff -ruN ffmpeg-orig/libavcodec/Makefile ffmpeg/libavcodec/Makefile | |
--- ffmpeg-orig/libavcodec/Makefile 2016-03-04 00:17:21.166198276 +0200 | |
+++ ffmpeg/libavcodec/Makefile 2016-03-04 00:18:17.583433360 +0200 | |
@@ -102,7 +102,7 @@ | |
motion_est.o ratecontrol.o \ | |
mpegvideoencdsp.o | |
OBJS-$(CONFIG_MSS34DSP) += mss34dsp.o | |
-OBJS-$(CONFIG_NVENC) += nvenc.o | |
+OBJS-$(CONFIG_NVENC) += nvenc.o nvenc_ptx.o | |
OBJS-$(CONFIG_PIXBLOCKDSP) += pixblockdsp.o |
- install java
yum install java
- download solr
wget http://www.us.apache.org/dist/lucene/solr/6.1.0/solr-6.1.0.tgz
- extract the service installation file:
tar xzf solr-6.1.0.tgz solr-6.1.0/bin/install_solr_service.sh --strip-components=2
- install solr as service
sudo ./install_solr_service.sh solr-6.1.0.tgz
- check solr status
/etc/init.d/solr status
sudo su - solr -c "/opt/solr/bin/solr create -c core-name-for-solr -n data_driven_schema_configs"
NewerOlder