This is about the new HTTP PUT file upload feature of Shaka Packager, see also shaka-project/shaka-packager#149. The code is currently living in the `http-upload`_ branch.
The receiver is based on the native Nginx module "`ngx_http_dav_module`_",
This is about the new HTTP PUT file upload feature of Shaka Packager, see also shaka-project/shaka-packager#149. The code is currently living in the `http-upload`_ branch.
The receiver is based on the native Nginx module "`ngx_http_dav_module`_",
| # | |
| # Caddy HTTP configuration for HTTP upload and beyond | |
| # | |
| # Documentation: | |
| # | |
| # https://caddyserver.com/docs/http-caddyfile | |
| # https://caddyserver.com/docs/root | |
| # https://caddyserver.com/docs/browse | |
| # https://caddyserver.com/docs/http.upload | |
| # |
| [0130/005457:VERBOSE1:http_file.cc(170)] Sending request to URL http://media.example.org/upload/6029-video-480-0024.ts | |
| [0130/005502:VERBOSE1:http_file.cc(170)] Sending request to URL http://media.example.org/upload/6029-video-720.m3u8 | |
| [0130/005502:VERBOSE1:http_file.cc(170)] Sending request to URL http://media.example.org/upload/6029.m3u8 | |
| [0130/005503:VERBOSE1:http_file.cc(170)] Sending request to URL http://media.example.org/upload/6029-video-720-0017.ts | |
| [0130/005510:VERBOSE1:http_file.cc(170)] Sending request to URL http://media.example.org/upload/6029-video-480.m3u8 | |
| [0130/005510:VERBOSE1:http_file.cc(170)] Sending request to URL http://media.example.org/upload/6029.m3u8 | |
| [0130/005511:VERBOSE1:http_file.cc(170)] Sending request to URL http://media.example.org/upload/6029-video-480-0025.ts | |
| [0130/005514:VERBOSE1:http_file.cc(170)] Sending request to URL http://media.example.org/upload/6029-video-480.m3u8 | |
| [0130/005515:VERBOSE1:http_file.cc(170)] Sending request to URL http://media.example.org/upload/6029.m3u8 | |
| [ |
| /** | |
| * | |
| * Basic I2S recorder | |
| * Based on wjmb's Feather M0 Beehive LoRa code | |
| * | |
| * Minimum example for trying to reproduce problems when | |
| * reading the ICS43432 using I2S without using TTN at all. | |
| * | |
| * License: GPL | |
| * |
| offgrid:HX711 amo$ make build-all | |
| Environment atmega [SUCCESS] | |
| Environment feather_328 [SUCCESS] | |
| Environment huzzah [SUCCESS] | |
| Environment lopy4 [SUCCESS] | |
| Environment feather_m0 [SUCCESS] | |
| Environment feather_m4 [SUCCESS] | |
| Environment bluepill [SUCCESS] |
| #!/usr/bin/env python3 | |
| # Based on https://mode.readthedocs.io/ - thanks, Ask! | |
| import asyncio | |
| import websockets | |
| from mode import Service | |
| class MainService(Service): | |
| async def on_start(self) -> None: | |
| print('Im starting now') |
| #!/usr/bin/env python | |
| class Acme: | |
| def add_foo(self): | |
| print("Adding foo") | |
| def add_bar(self): | |
| print("Adding bar") |
| #!/bin/bash | |
| # https://www.tecmint.com/set-linux-process-priority-using-nice-and-renice-commands/ | |
| processnames="ffmpeg packager" | |
| niceness="-10" | |
| for name in $processnames; do | |
| echo "Renicing $name" | |
| pids=$( pidof $name ) | |
| for pid in $pids; do |