{"id":50745917,"url":"https://github.com/aoephtua/movids","last_synced_at":"2026-06-10T20:33:04.046Z","repository":{"id":44523672,"uuid":"510646752","full_name":"aoephtua/movids","owner":"aoephtua","description":"Node.js command line tool and library for fetching records of IP cameras by motion detection","archived":false,"fork":false,"pushed_at":"2025-07-01T12:22:01.000Z","size":124,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-22T23:18:24.112Z","etag":null,"topics":["es6","ip-camera","javascript","motion-detection","nodejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aoephtua.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-07-05T08:17:11.000Z","updated_at":"2025-07-01T12:22:04.000Z","dependencies_parsed_at":"2023-01-28T20:30:34.466Z","dependency_job_id":"0ff8e441-7b81-48d4-b03b-f2c19f1d6223","html_url":"https://github.com/aoephtua/movids","commit_stats":{"total_commits":10,"total_committers":1,"mean_commits":10.0,"dds":0.0,"last_synced_commit":"5e2002b183c5569397a59575d8ffefbb70802bc5"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aoephtua/movids","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoephtua%2Fmovids","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoephtua%2Fmovids/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoephtua%2Fmovids/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoephtua%2Fmovids/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aoephtua","download_url":"https://codeload.github.com/aoephtua/movids/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aoephtua%2Fmovids/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34170162,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["es6","ip-camera","javascript","motion-detection","nodejs"],"created_at":"2026-06-10T20:33:03.212Z","updated_at":"2026-06-10T20:33:04.034Z","avatar_url":"https://github.com/aoephtua.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# movids\n\n[![npm](https://img.shields.io/npm/v/movids)](https://www.npmjs.com/package/movids)\n![npm](https://img.shields.io/npm/dw/movids?label=↓)\n[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/aoephtua/movids/blob/master/LICENSE)\n\nNode.js command line tool and library for fetching records of IP cameras by motion detection.\n\nDetected dates are fetched over HTTP requests and can be stored in databases.\n\n## Installation\n\n    $ npm install -g movids\n\n## Usage\n\n### Command\n\nTransfers and converts records of the specified parameters.\n\n    $ movids --start-date [YYYYMMDD|today|yesterday] --start-time [HHMM] --end-date [YYYYMMDD|today|yesterday] --end-time [HHMM]\n\n### General Options\n\n```\nOptions:\n  -v, --version                            output the version number\n  --start-date \u003cyyyymmdd|today|yesterday\u003e  start date of records\n  --start-time \u003chhmm\u003e                      start time of records\n  --end-date \u003cyyyymmdd|today|yesterday\u003e    end date of records\n  --end-time \u003chhmm\u003e                        end time of records\n  --no-snapshots                           skip fetching snapshots\n  --no-videos                              skip fetching videos\n  -h, --help                               display help for command\n```\n\n### Configuration\n\n```\nconst config = {\n    restApi: {\n        baseUrl: 'http://192.168.178.96:8000',\n        endpoints: {\n            motions: {\n                path: 'api/motions',\n                count: 'count',\n                entries: 'data',\n                reverse: true,\n                utc: true,\n                keys: {\n                    date: 'date',\n                    endDate: 'endDate'\n                },\n                snapshots: {\n                    key: 'snapshots',\n                    id: '_id',\n                    name: 'name',\n                    getPath: id =\u003e `media/motion/snapshot/${id}`,\n                    ext: 'jpg'\n                },\n                queryParams: {\n                    device: '63f47d4503961d23f1ea98f2'\n                },\n                limit: 0\n            }\n        }\n    },\n    ipcamsd: {\n        cameras: [{\n            host: '192.168.178.30',\n            username: 'admin',\n            password: 'admin'\n        }, {\n            host: '192.168.178.31',\n            username: 'admin',\n            password: 'admin'\n        }],\n        minutesIfEndDateIsNull: 3\n    },\n    format: {\n        date: 'YYYYMMDD',\n        time: 'HHmmss'\n    }\n};\n```\n\n## License\n\nThis project is licensed under [MIT](https://github.com/aoephtua/movids/blob/master/LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faoephtua%2Fmovids","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faoephtua%2Fmovids","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faoephtua%2Fmovids/lists"}