Michael Grote
28f22968da
Reviewed-on: #127
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
ci: testing deployment (#128)
Reviewed-on: #128
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
ci: test
ci: enable deployment
ci: set ssh-key for deployment
ci: debug
ci: deactivate ansible-lint temporarily
ci: deactivate ansible-galaxy temporarily
ci: debug ssh-key shell redirect
ci: base64
ci: debug
ci: debug
ci: fix output
Revert "ci: deactivate ansible-lint temporarily"
This reverts commit 6729342f26
.
ci: fix vault-pass secret
pbs_integration: enable no_log
ci: debug ansible-vault
ci: debug
ci: ansible-vault + move to viczem.keepass (#130)
Reviewed-on: #130
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
ff
plugin umbennennugn
ff
25 lines
1,005 B
Text
25 lines
1,005 B
Text
{{ file_header | default () }}
|
|
|
|
--force-ipv4 #erzwinge ipv4
|
|
--ignore-errors #bei fehlern weitermachen
|
|
--limit-rate {{ ytdl_download_limit }} #downloadrate begrenzen
|
|
--sleep-interval 3 #wartezeit zwischen downloads
|
|
--no-check-certificate #kein tls check
|
|
--download-archive "{{ ytdl_video_log_output }}" #lese und schreibe archiv log
|
|
--restrict-filenames #nehme nur gueltige dateinamenszeichen
|
|
--no-overwrites #ueberschreibe keine dateien
|
|
--output "{{ ytdl_video_output }}" #ordner + dateinamen
|
|
--encoding utf-8 # fuer linux
|
|
--embed-subs #schreibe metadaten
|
|
--add-metadata #schreibe metadaten
|
|
--write-info-json #schreibe metadaten
|
|
--write-description #schreibe metadaten
|
|
--write-annotations #schreibe metadaten
|
|
--username "{{ lookup('viczem.keepass.keepass', 'youtubedl_youtube_login', 'username') }}" #login youtube
|
|
--password "{{ lookup('viczem.keepass.keepass', 'youtubedl_youtube_login', 'password') }}" #login youtube
|
|
--no-color
|
|
--no-progress
|
|
|
|
{% for item in ytdl_video_urls %}
|
|
{{ item }}
|
|
{% endfor %}
|