{"id":21252753,"url":"https://github.com/bkopysc/simpletimelapsepi","last_synced_at":"2026-04-17T12:31:12.632Z","repository":{"id":155518017,"uuid":"632654663","full_name":"BKopysc/SimpleTimelapsePi","owner":"BKopysc","description":"Simple timelapse application for Raspberry Pi with camera module","archived":false,"fork":false,"pushed_at":"2023-04-25T22:21:34.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-15T05:41:55.601Z","etag":null,"topics":["camera","picamera2","python","raspberry-pi","shell","timelapse"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BKopysc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-04-25T21:24:33.000Z","updated_at":"2023-04-25T22:24:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"bf9feada-3c70-40af-8d26-43faeba5a13a","html_url":"https://github.com/BKopysc/SimpleTimelapsePi","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BKopysc/SimpleTimelapsePi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BKopysc%2FSimpleTimelapsePi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BKopysc%2FSimpleTimelapsePi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BKopysc%2FSimpleTimelapsePi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BKopysc%2FSimpleTimelapsePi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BKopysc","download_url":"https://codeload.github.com/BKopysc/SimpleTimelapsePi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BKopysc%2FSimpleTimelapsePi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31929476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T10:35:34.458Z","status":"ssl_error","status_checked_at":"2026-04-17T10:35:09.472Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["camera","picamera2","python","raspberry-pi","shell","timelapse"],"created_at":"2024-11-21T03:48:39.912Z","updated_at":"2026-04-17T12:31:12.627Z","avatar_url":"https://github.com/BKopysc.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SimpleTimelapsePi\nSimple timelapse application for Raspberry Pi with camera module. \nThe main goal was to schedule the timelapse to run in the background at a certain time. This way you can leave the SSH connection and go to sleep peacefully 😴.\n\n## Requirements\n- Python 3.x\n- pip\n- [Raspberry Pi](https://www.raspberrypi.com/)\n- [Camera module](https://projects.raspberrypi.org/en/projects/getting-started-with-picamera)\n\n## Used libraries\n- [at](https://phoenixnap.com/kb/linux-at-command) - linux command\n- [picamera2](https://github.com/raspberrypi/picamera2) - python library\n\n## Installation\n1. clone repo\n2. run `pip -r requirements.ts`\n3. open and run commands from file `sh-requirements.txt`\n\n## Usage\nThere are two modes. You can use simple shell script (recommended) or python script\n\n### Shell script\n1. Make script executable: `chmod +x run.sh`\n2. Run `./run.sh \u003cstart-time\u003e \u003cend-time\u003e \u003cnumber-of-photos\u003e` with custom arguments. \n - `\u003cstart-time\u003e` - start time of shooting photos. \u003cbr/\u003e *For example: **10:00***\n - `\u003cend-time\u003e` - end time of shooting photos. \u003cbr/\u003e *For example: **10:30***\n - `\u003cnum-of-pictures\u003e` - number of expected photos. \u003cbr/\u003e *For example: **100***\n \n \u003e Summary: `./run.sh 10:00 10:30 100` will make 100 photos between 10:00 and 10:30.\n \n 3. Read output informations and proceed with `y`\n 4. Congrats 🥳. Your timelapse will start up at the set time! Then check folders in current location!\n \n \u003e You can check planned actions by `atq` command. You can remove planned action by `atrm \u003caction_id\u003e`\n \n ## Python file\n 1. Run `python timelapse-pi-app.py` \u003cnumber-of-photos\u003e \u003cdelay\u003e with custom argumnets.\n - `\u003cnumber-of-photos\u003e` - number of expected photos. \u003cbr/\u003e *For example: **100***\n - `\u003cdelay\u003e` - delay between photos in miliseconds. \u003cbr/\u003e *For example: **200***\n \n \u003e Summary `python timelapse-pi-app.py 100 200` will instantly run process and make 100 photos with deleay of 200ms between each other.\n \n 2. Hooray 🥂. Your timelapse are done! Check folders in current location!\n\n## Results 🌞\n\nhttps://user-images.githubusercontent.com/57834846/234415892-da883eb5-c0e1-4d9d-b520-e50b421e83cc.mp4\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbkopysc%2Fsimpletimelapsepi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbkopysc%2Fsimpletimelapsepi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbkopysc%2Fsimpletimelapsepi/lists"}