Introduces abstract scripts for ip-cameras manipulation using ffmpeg ffplay library, in addition to ready-to-use configurations for Tenda CP3pro both in full and sub-optimal resolutions.
Item | Details |
---|---|
Problem Definition/Genesis | Use the security surveillance IP cameras as Web-cams for streaming and trivial video recording. Let |
Problem Decomposition | Analysis of the problem entails decomposition into 2 stages, first reconnoitering for the IP camera (denotated as |
Solution Approach and Decomposition | The solution is much straight-forward, it involves providing solution subsets for each problem subset, so an IP Reconnoitering interface to extract the IP camera from the Access Point, and an RTSP A/V Streaming interface that accepts an IP address and parameters from the Middleware interface. |
Designation of concepts (Abstraction) | The middleware layer facilitates the idea of conceptualization and abstraction on the base of the solution subsets. |
Solution Design | Abstract entities include the IP/Mac Address reconnoitering interface that accepts a specific pattern as REGEX, and the RTSP A/V Streaming interface with a middleware layer that inputs a configuration for the A/V streaming codecs and output buffers including the IP address extracted from the former interface. |
Additional Modules | Video and Audio filter modules are created to modify the rendering of the current output stream. |
- Architecture:
Note
The base software architecture utilized here is based on applying decomposition by the means of juxtaposition and superposition, followed by applying designation to these components to find their constructs or abstract entities, and then putting these together into a System-Entity-Structure framework which could be interpreted to a simple hierarchial software pattern, where entities are on the top, and concrete configurations are on the bottom.
- A more concrete paradigm (very close proximity to the script semantics):
---
title: SES For ffplay-ip-cam Project
---
erDiagram
IP-Reconnoitering {
module IP-Filters
}
IP-Manipulation {
parameter IP-Filters[]
void Setup-bettercap
void Get-Endpoints
void Write-Endpoints
}
AV-Codecs {
module AV-Filters
}
AV-Streaming {
parameter AV-Filters[]
void Ffplay
void Try-on-endpoints
}
AV-Recording {
parameters AV-Filters
void Ffplay
void Try-on-endpoints
}
IP-Reconnoitering ||--o{ IP-Manipulation: Specialization
AV-Codecs ||--o{ AV-Streaming: Aspect
AV-Codecs ||--o{ AV-Recording: Aspect
- Features:
- Abstract Generic IP Manipulation, filter, and mapping scripts.
- Abstract ffplay scripts.
- Test cases for the IP Manipulation and the ffplay scripts.
- Ready-to-use configurations for Tenda CP3pro both in audio, and no audio stream modes in addition to the full and suboptimal resolution components.
- A/V Filter Modules (e.g., Color Filter Module, Frame Filter Module, Audio Filter Module).
W.I.P
W.I.P