This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pushd "%~dp0" | |
| dir /b %SystemRoot%\servicing\Packages\*containers*.mum >containers.txt | |
| for /f %%i in ('findstr /i . containers.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i" | |
| del containers.txt | |
| Dism /online /enable-feature /featurename:Containers -All /LimitAccess /ALL | |
| pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extern crate serialize; | |
| extern crate http; | |
| extern crate url; | |
| use std::string::String; | |
| use serialize::json; | |
| use serialize::json::Json; | |
| use serialize::json::ToJson; | |
| use http::client::RequestWriter; | |
| use http::headers::content_type::MediaType; |
Use ffmpeg to connect to an ip cctv camera and create video files on the fly that can be viewed in an mpeg-dash compatible browser using dash.js and an html5 video element.
A linux server, such as Ubuntu
Apache web server installed, running, and reachable via its ip address
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * starter_video.cpp | |
| * | |
| * Created on: Nov 23, 2010 | |
| * Author: Ethan Rublee | |
| * | |
| * Modified on: April 17, 2013 | |
| * Author: Kevin Hughes | |
| * | |
| * A starter sample for using OpenCV VideoCapture with capture devices, video files or image sequences |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * starter_video.cpp | |
| * | |
| * Created on: Nov 23, 2010 | |
| * Author: Ethan Rublee | |
| * | |
| * Modified on: April 17, 2013 | |
| * Author: Kevin Hughes | |
| * | |
| * A starter sample for using OpenCV VideoCapture with capture devices, video files or image sequences |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <title>Simple WebGL/GLSL video panorama viewer</title> | |
| <style> | |
| body { | |
| background-color: #000000; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Command: C:\Program Files\Sublime Text 3\sublime_text.exe | |
| Arguments: $(ItemPath):$(CurLine):$(CurCol) | |
| Initial directory: $(ItemDir) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // gcc dxinteropcaps.c -std=c99 -Wall -o dxinteropcaps -lgdi32 -lopengl32 -ld3d9 -O0 -ggdb3 | |
| #define _WIN32_WINNT 0x0600 | |
| #define COBJMACROS | |
| #define UNICODE | |
| #define _UNICODE | |
| #include <stdbool.h> | |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <windows.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "../../lib/win32/bin/protoc-c.exe" --proto_path=. --c_out=. cp-gui.proto |
NewerOlder

