mirror of
https://github.com/mtan93/Apps-Community.git
synced 2026-03-24 21:03:25 +00:00
add mp4 templates
This commit is contained in:
@@ -1,78 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
#
|
|
||||||
# Title: PGBlitz (linuxserver/kodi-headless)
|
|
||||||
# Author(s): MrDoob
|
|
||||||
# URL: https://pgblitz.com - http://github.pgblitz.com
|
|
||||||
# GNU: General Public License v3.0
|
|
||||||
################################################################################
|
|
||||||
---
|
|
||||||
- hosts: localhost
|
|
||||||
gather_facts: false
|
|
||||||
tasks:
|
|
||||||
# FACTS #######################################################################
|
|
||||||
- name: 'Set Known Facts'
|
|
||||||
set_fact:
|
|
||||||
pgrole: 'kodi-headless'
|
|
||||||
intport: '8080'
|
|
||||||
extport: '8088'
|
|
||||||
intport2: '9090'
|
|
||||||
extport2: '9099'
|
|
||||||
intport3: '9777'
|
|
||||||
extport3: '9777/udp'
|
|
||||||
image: 'linuxserver/kodi-headless:latest'
|
|
||||||
|
|
||||||
# CORE (MANDATORY) ############################################################
|
|
||||||
- name: 'Including cron job'
|
|
||||||
include_tasks: '/opt/communityapps/apps/_core.yml'
|
|
||||||
|
|
||||||
# LABELS ######################################################################
|
|
||||||
- name: 'Adding Traefik'
|
|
||||||
set_fact:
|
|
||||||
pg_labels:
|
|
||||||
traefik.enable: 'true'
|
|
||||||
traefik.port: '{{intport}}'
|
|
||||||
traefik.frontend.auth.forward.address: '{{gauth}}'
|
|
||||||
traefik.frontend.rule: 'Host:{{pgrole}}.{{domain.stdout}}{{tldset}}{{cname}}'
|
|
||||||
traefik.frontend.headers.SSLHost: '{{domain.stdout}}'
|
|
||||||
traefik.frontend.headers.SSLRedirect: 'true'
|
|
||||||
traefik.frontend.headers.STSIncludeSubdomains: 'true'
|
|
||||||
traefik.frontend.headers.STSPreload: 'true'
|
|
||||||
traefik.frontend.headers.STSSeconds: '315360000'
|
|
||||||
traefik.frontend.headers.browserXSSFilter: 'true'
|
|
||||||
traefik.frontend.headers.contentTypeNosniff: 'true'
|
|
||||||
traefik.frontend.headers.customResponseHeaders: 'X-Robots-Tag:noindex,nofollow,nosnippet,noarchive,notranslate,noimageindex'
|
|
||||||
traefik.frontend.headers.forceSTSHeader: 'true'
|
|
||||||
|
|
||||||
- name: 'Setting PG Volumes'
|
|
||||||
set_fact:
|
|
||||||
pg_volumes:
|
|
||||||
- '/etc/localtime:/etc/localtime:ro'
|
|
||||||
- '{{path.stdout}}:{{path.stdout}}'
|
|
||||||
- '/mnt:/mnt'
|
|
||||||
- '/opt/appdata/{{pgrole}}/config:/config/.kodi:rw'
|
|
||||||
|
|
||||||
- name: 'Setting PG ENV'
|
|
||||||
set_fact:
|
|
||||||
pg_env:
|
|
||||||
PUID: '1000'
|
|
||||||
PGID: '1000'
|
|
||||||
|
|
||||||
# MAIN DEPLOYMENT #############################################################
|
|
||||||
- name: 'Deploying {{pgrole}}'
|
|
||||||
docker_container:
|
|
||||||
name: '{{pgrole}}'
|
|
||||||
image: '{{image}}'
|
|
||||||
pull: yes
|
|
||||||
published_ports:
|
|
||||||
- '{{extport}}:{{intport}}'
|
|
||||||
- '{{extport2}}:{{intport2}}'
|
|
||||||
- '{{extport3}}:{{intport3}}'
|
|
||||||
volumes: '{{pg_volumes}}'
|
|
||||||
env: '{{pg_env}}'
|
|
||||||
restart_policy: always
|
|
||||||
networks:
|
|
||||||
- name: plexguide
|
|
||||||
aliases:
|
|
||||||
- '{{pgrole}}'
|
|
||||||
state: started
|
|
||||||
labels: '{{pg_labels}}'
|
|
||||||
@@ -1,76 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
#
|
|
||||||
# Title: PGBlitz (Reference Title File)
|
|
||||||
# Author(s): Admin9705
|
|
||||||
# URL: https://pgblitz.com - http://github.pgblitz.com
|
|
||||||
# GNU: General Public License v3.0
|
|
||||||
################################################################################
|
|
||||||
---
|
|
||||||
- hosts: localhost
|
|
||||||
gather_facts: false
|
|
||||||
tasks:
|
|
||||||
# FACTS #######################################################################
|
|
||||||
- name: 'Set Known Facts'
|
|
||||||
set_fact:
|
|
||||||
pgrole: 'nzbthrottle'
|
|
||||||
intport: '0'
|
|
||||||
extport: '0'
|
|
||||||
image: 'daghaian/nzbthrottle'
|
|
||||||
|
|
||||||
# CORE (MANDATORY) ############################################################
|
|
||||||
- name: 'Including cron job'
|
|
||||||
include_tasks: '/opt/communityapps/apps/_core.yml'
|
|
||||||
|
|
||||||
- name: 'Checking {{pgrole}} for existing app data'
|
|
||||||
stat:
|
|
||||||
path: '/opt/communityapps/apps/templates/{{pgrole}}/config.json'
|
|
||||||
register: jsoncheck
|
|
||||||
|
|
||||||
# LABELS ######################################################################
|
|
||||||
- name: 'Adding Traefik'
|
|
||||||
set_fact:
|
|
||||||
pg_labels:
|
|
||||||
traefik.frontend.auth.forward.address: '{{gauth}}'
|
|
||||||
traefik.enable: 'true'
|
|
||||||
traefik.port: '{{intport}}'
|
|
||||||
|
|
||||||
traefik.frontend.rule: 'Host:{{pgrole}}.{{domain.stdout}}{{tldset}}{{cname}}'
|
|
||||||
traefik.frontend.headers.SSLHost: '{{domain.stdout}}'
|
|
||||||
traefik.frontend.headers.SSLRedirect: 'true'
|
|
||||||
traefik.frontend.headers.STSIncludeSubdomains: 'true'
|
|
||||||
traefik.frontend.headers.STSPreload: 'true'
|
|
||||||
traefik.frontend.headers.STSSeconds: '315360000'
|
|
||||||
traefik.frontend.headers.browserXSSFilter: 'true'
|
|
||||||
traefik.frontend.headers.contentTypeNosniff: 'true'
|
|
||||||
traefik.frontend.headers.customResponseHeaders: 'X-Robots-Tag:noindex,nofollow,nosnippet,noarchive,notranslate,noimageindex'
|
|
||||||
traefik.frontend.headers.forceSTSHeader: 'true'
|
|
||||||
|
|
||||||
- name: 'Setting PG Volumes'
|
|
||||||
set_fact:
|
|
||||||
pg_volumes:
|
|
||||||
- '/etc/localtime:/etc/localtime:ro'
|
|
||||||
- '/opt/appdata/{{pgrole}}:/{{pgrole}}'
|
|
||||||
|
|
||||||
- name: 'Setting PG ENV'
|
|
||||||
set_fact:
|
|
||||||
pg_env:
|
|
||||||
PUID: '1000'
|
|
||||||
PGID: '1000'
|
|
||||||
|
|
||||||
# MAIN DEPLOYMENT #############################################################
|
|
||||||
- name: 'Deploying {{pgrole}}'
|
|
||||||
docker_container:
|
|
||||||
name: '{{pgrole}}'
|
|
||||||
image: '{{image}}'
|
|
||||||
pull: yes
|
|
||||||
published_ports:
|
|
||||||
- '{{ports.stdout}}{{extport}}:{{intport}}'
|
|
||||||
volumes: '{{pg_volumes}}'
|
|
||||||
env: '{{pg_env}}'
|
|
||||||
restart_policy: unless-stopped
|
|
||||||
networks:
|
|
||||||
- name: plexguide
|
|
||||||
aliases:
|
|
||||||
- '{{pgrole}}'
|
|
||||||
state: started
|
|
||||||
labels: '{{pg_labels}}'
|
|
||||||
55
apps/templates/radarr4k/config_mp4_automator/autoProcess.ini
Normal file
55
apps/templates/radarr4k/config_mp4_automator/autoProcess.ini
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
[Radarr]
|
||||||
|
host = localhost
|
||||||
|
port = 7878
|
||||||
|
web_root =
|
||||||
|
ssl = False
|
||||||
|
apikey =
|
||||||
|
|
||||||
|
[MP4]
|
||||||
|
ffmpeg = /usr/bin/ffmpeg
|
||||||
|
ffprobe = /usr/bin/ffprobe
|
||||||
|
threads = auto
|
||||||
|
output_directory =
|
||||||
|
copy_to =
|
||||||
|
move_to =
|
||||||
|
output_extension = mp4
|
||||||
|
output_format = mp4
|
||||||
|
delete_original = True
|
||||||
|
relocate_moov = True
|
||||||
|
video-codec = h264,x264
|
||||||
|
video-bitrate =
|
||||||
|
video-crf =
|
||||||
|
video-max-width =
|
||||||
|
video-profile =
|
||||||
|
h264-max-level =
|
||||||
|
use-qsv-decoder-with-encoder = True
|
||||||
|
use-hevc-qsv-decoder = False
|
||||||
|
enable_dxva2_gpu_decode = False
|
||||||
|
ios-audio = True
|
||||||
|
ios-first-track-only = False
|
||||||
|
ios-audio-filter =
|
||||||
|
ios-move-last = False
|
||||||
|
max-audio-channels =
|
||||||
|
audio-codec = ac3
|
||||||
|
audio-language =
|
||||||
|
audio-default-language =
|
||||||
|
audio-channel-bitrate =
|
||||||
|
audio-filter =
|
||||||
|
audio-copy-original = False
|
||||||
|
subtitle-codec = mov_text
|
||||||
|
subtitle-language =
|
||||||
|
subtitle-default-language =
|
||||||
|
subtitle-encoding =
|
||||||
|
fullpathguess = True
|
||||||
|
convert-mp4 = False
|
||||||
|
tagfile = True
|
||||||
|
tag-language = en
|
||||||
|
download-artwork = Poster
|
||||||
|
download-subs = False
|
||||||
|
embed-subs = True
|
||||||
|
embed-only-internal-subs = False
|
||||||
|
sub-providers = addic7ed,podnapisi,thesubdb,opensubtitles
|
||||||
|
permissions = 0777
|
||||||
|
post-process = False
|
||||||
|
pix-fmt =
|
||||||
|
aac_adtstoasc = False
|
||||||
5
apps/templates/radarr4k/scripts/cleanup-radarr.sh
Normal file
5
apps/templates/radarr4k/scripts/cleanup-radarr.sh
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -d "$radarr_moviefile_sourcefolder" ] && [ "$(basename $radarr_moviefile_sourcefolder)" = "deluge_extracted" ] ; then
|
||||||
|
/bin/rm -rf $radarr_moviefile_sourcefolder
|
||||||
|
fi
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
[Radarr]
|
||||||
|
host = localhost
|
||||||
|
port = 7878
|
||||||
|
web_root =
|
||||||
|
ssl = False
|
||||||
|
apikey =
|
||||||
|
|
||||||
|
[MP4]
|
||||||
|
ffmpeg = /usr/bin/ffmpeg
|
||||||
|
ffprobe = /usr/bin/ffprobe
|
||||||
|
threads = auto
|
||||||
|
output_directory =
|
||||||
|
copy_to =
|
||||||
|
move_to =
|
||||||
|
output_extension = mp4
|
||||||
|
output_format = mp4
|
||||||
|
delete_original = True
|
||||||
|
relocate_moov = True
|
||||||
|
video-codec = h264,x264
|
||||||
|
video-bitrate =
|
||||||
|
video-crf =
|
||||||
|
video-max-width =
|
||||||
|
video-profile =
|
||||||
|
h264-max-level =
|
||||||
|
use-qsv-decoder-with-encoder = True
|
||||||
|
use-hevc-qsv-decoder = False
|
||||||
|
enable_dxva2_gpu_decode = False
|
||||||
|
ios-audio = True
|
||||||
|
ios-first-track-only = False
|
||||||
|
ios-audio-filter =
|
||||||
|
ios-move-last = False
|
||||||
|
max-audio-channels =
|
||||||
|
audio-codec = ac3
|
||||||
|
audio-language =
|
||||||
|
audio-default-language =
|
||||||
|
audio-channel-bitrate =
|
||||||
|
audio-filter =
|
||||||
|
audio-copy-original = False
|
||||||
|
subtitle-codec = mov_text
|
||||||
|
subtitle-language =
|
||||||
|
subtitle-default-language =
|
||||||
|
subtitle-encoding =
|
||||||
|
fullpathguess = True
|
||||||
|
convert-mp4 = False
|
||||||
|
tagfile = True
|
||||||
|
tag-language = en
|
||||||
|
download-artwork = Poster
|
||||||
|
download-subs = False
|
||||||
|
embed-subs = True
|
||||||
|
embed-only-internal-subs = False
|
||||||
|
sub-providers = addic7ed,podnapisi,thesubdb,opensubtitles
|
||||||
|
permissions = 0777
|
||||||
|
post-process = False
|
||||||
|
pix-fmt =
|
||||||
|
aac_adtstoasc = False
|
||||||
5
apps/templates/radarrhdr/scripts/cleanup-radarr.sh
Normal file
5
apps/templates/radarrhdr/scripts/cleanup-radarr.sh
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -d "$radarr_moviefile_sourcefolder" ] && [ "$(basename $radarr_moviefile_sourcefolder)" = "deluge_extracted" ] ; then
|
||||||
|
/bin/rm -rf $radarr_moviefile_sourcefolder
|
||||||
|
fi
|
||||||
55
apps/templates/sonarr4k/config_mp4_automator/autoProcess.ini
Normal file
55
apps/templates/sonarr4k/config_mp4_automator/autoProcess.ini
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
[Sonarr]
|
||||||
|
host = localhost
|
||||||
|
port = 8989
|
||||||
|
web_root =
|
||||||
|
ssl = False
|
||||||
|
apikey =
|
||||||
|
|
||||||
|
[MP4]
|
||||||
|
ffmpeg = /usr/bin/ffmpeg
|
||||||
|
ffprobe = /usr/bin/ffprobe
|
||||||
|
threads = auto
|
||||||
|
output_directory =
|
||||||
|
copy_to =
|
||||||
|
move_to =
|
||||||
|
output_extension = mp4
|
||||||
|
output_format = mp4
|
||||||
|
delete_original = True
|
||||||
|
relocate_moov = True
|
||||||
|
video-codec = h264,x264
|
||||||
|
video-bitrate =
|
||||||
|
video-crf =
|
||||||
|
video-max-width =
|
||||||
|
video-profile =
|
||||||
|
h264-max-level =
|
||||||
|
use-qsv-decoder-with-encoder = True
|
||||||
|
use-hevc-qsv-decoder = False
|
||||||
|
enable_dxva2_gpu_decode = False
|
||||||
|
ios-audio = True
|
||||||
|
ios-first-track-only = False
|
||||||
|
ios-audio-filter =
|
||||||
|
ios-move-last = False
|
||||||
|
max-audio-channels =
|
||||||
|
audio-codec = ac3
|
||||||
|
audio-language =
|
||||||
|
audio-default-language =
|
||||||
|
audio-channel-bitrate =
|
||||||
|
audio-filter =
|
||||||
|
audio-copy-original = False
|
||||||
|
subtitle-codec = mov_text
|
||||||
|
subtitle-language =
|
||||||
|
subtitle-default-language =
|
||||||
|
subtitle-encoding =
|
||||||
|
fullpathguess = True
|
||||||
|
convert-mp4 = False
|
||||||
|
tagfile = True
|
||||||
|
tag-language = en
|
||||||
|
download-artwork = Poster
|
||||||
|
download-subs = False
|
||||||
|
embed-subs = True
|
||||||
|
embed-only-internal-subs = False
|
||||||
|
sub-providers = addic7ed,podnapisi,thesubdb,opensubtitles
|
||||||
|
permissions = 0777
|
||||||
|
post-process = False
|
||||||
|
pix-fmt =
|
||||||
|
aac_adtstoasc = False
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
[Sonarr]
|
||||||
|
host = localhost
|
||||||
|
port = 8989
|
||||||
|
web_root =
|
||||||
|
ssl = False
|
||||||
|
apikey =
|
||||||
|
|
||||||
|
[MP4]
|
||||||
|
ffmpeg = /usr/bin/ffmpeg
|
||||||
|
ffprobe = /usr/bin/ffprobe
|
||||||
|
threads = auto
|
||||||
|
output_directory =
|
||||||
|
copy_to =
|
||||||
|
move_to =
|
||||||
|
output_extension = mp4
|
||||||
|
output_format = mp4
|
||||||
|
delete_original = True
|
||||||
|
relocate_moov = True
|
||||||
|
video-codec = h264,x264
|
||||||
|
video-bitrate =
|
||||||
|
video-crf =
|
||||||
|
video-max-width =
|
||||||
|
video-profile =
|
||||||
|
h264-max-level =
|
||||||
|
use-qsv-decoder-with-encoder = True
|
||||||
|
use-hevc-qsv-decoder = False
|
||||||
|
enable_dxva2_gpu_decode = False
|
||||||
|
ios-audio = True
|
||||||
|
ios-first-track-only = False
|
||||||
|
ios-audio-filter =
|
||||||
|
ios-move-last = False
|
||||||
|
max-audio-channels =
|
||||||
|
audio-codec = ac3
|
||||||
|
audio-language =
|
||||||
|
audio-default-language =
|
||||||
|
audio-channel-bitrate =
|
||||||
|
audio-filter =
|
||||||
|
audio-copy-original = False
|
||||||
|
subtitle-codec = mov_text
|
||||||
|
subtitle-language =
|
||||||
|
subtitle-default-language =
|
||||||
|
subtitle-encoding =
|
||||||
|
fullpathguess = True
|
||||||
|
convert-mp4 = False
|
||||||
|
tagfile = True
|
||||||
|
tag-language = en
|
||||||
|
download-artwork = Poster
|
||||||
|
download-subs = False
|
||||||
|
embed-subs = True
|
||||||
|
embed-only-internal-subs = False
|
||||||
|
sub-providers = addic7ed,podnapisi,thesubdb,opensubtitles
|
||||||
|
permissions = 0777
|
||||||
|
post-process = False
|
||||||
|
pix-fmt =
|
||||||
|
aac_adtstoasc = False
|
||||||
Reference in New Issue
Block a user