-i - ignore errors
-c - continue
-t - use video title as file name
--extract-audio - extract audio track
| #include <ESP8266WiFi.h> | |
| #include <WiFiUdp.h> | |
| #include <ESP8266WebServer.h> | |
| // simple POC : send hello world string over UDP-multicast address every 2 seconds. | |
| // a very simple way to connect IOT to local network without need of any server. | |
| // author : Marc Quinton / feb 2019 | |
| // keywords : esp8266, arduino, multicast, IOT, example, POC | |
| WiFiUDP udp; |
| # put this file in the top source dir (CMAKE_SOURCE_DIR) | |
| # see: https://cmake.org/cmake/help/latest/module/CMakeGraphVizOptions.html | |
| set(GRAPHVIZ_EXTERNAL_LIBS FALSE) | |
| # only dependencies between libraries | |
| set(GRAPHVIZ_EXECUTABLES FALSE) |
| void SyncService::sync() | |
| { | |
| QUrl url(SYNC_URL); | |
| QNetworkRequest request(url); | |
| request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); | |
| QNetworkAccessManager *manager = new QNetworkAccessManager(this); | |
| connect(manager, SIGNAL(finished(QNetworkReply*)), |