Inspired by this gist, this patch set will apply to FFmpeg Git branch master (as of 23-Jun-2022).
patch -p1 < NDI_*.patch| DROP TABLE IF EXISTS constants | |
| ; | |
| CREATE TABLE constants ( | |
| table_name CHARACTER(25), | |
| column_name CHARACTER(25), | |
| code INTEGER, | |
| value TEXT) | |
| ; |
Inspired by this gist, this patch set will apply to FFmpeg Git branch master (as of 23-Jun-2022).
patch -p1 < NDI_*.patch| /** | |
| * Copyright (c) 2020 Mark Himsley | |
| * | |
| * 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: | |
| * |
| Copy certbot certificate into Docker host: | |
| $ scp etc/live/<domain>/fullchain.pem <host>:~/minio_certs/public.crt | |
| $ scp etc/live/<domain>/privkey.pem <host>:~/minio_certs/private.key | |
| Test with: | |
| $ docker run -it --rm --name minio \ | |
| -p 9000:9000 \ | |
| -v /home/$USER/minio_certs:/certs \ |