{"id":16161966,"url":"https://github.com/jessedp/tablo-tools-electron","last_synced_at":"2025-03-18T22:30:51.625Z","repository":{"id":36854188,"uuid":"227661723","full_name":"jessedp/tablo-tools-electron","owner":"jessedp","description":"A desktop app to help manage your Tablo devices","archived":false,"fork":false,"pushed_at":"2024-12-14T03:35:44.000Z","size":15220,"stargazers_count":31,"open_issues_count":12,"forks_count":2,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-03-17T00:03:06.171Z","etag":null,"topics":["dvr","electron","nodejs","tablo"],"latest_commit_sha":null,"homepage":"https://jessedp.github.io/tablo-tools-electron/","language":"TypeScript","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/jessedp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2019-12-12T17:33:32.000Z","updated_at":"2025-03-02T22:43:21.000Z","dependencies_parsed_at":"2024-10-27T19:16:43.233Z","dependency_job_id":"44e6645c-67f3-4957-8e9a-c600f9fd2e1a","html_url":"https://github.com/jessedp/tablo-tools-electron","commit_stats":null,"previous_names":[],"tags_count":73,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jessedp%2Ftablo-tools-electron","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jessedp%2Ftablo-tools-electron/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jessedp%2Ftablo-tools-electron/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jessedp%2Ftablo-tools-electron/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jessedp","download_url":"https://codeload.github.com/jessedp/tablo-tools-electron/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244318396,"owners_count":20433894,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["dvr","electron","nodejs","tablo"],"created_at":"2024-10-10T02:28:28.925Z","updated_at":"2025-03-18T22:30:51.620Z","avatar_url":"https://github.com/jessedp.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## 🚨 Warning: 4th Gen Tablo Devices Are Not Supported\n\nUnfortunately, it won't happen - there's more info in various [issues](https://github.com/jessedp/tablo-tools-electron/issues?q=is%3Aissue+is%3Aclosed)\n\n[\u003cimg src=\"https://jessedp.github.io/tablo-tools-electron/resources/tablo_title_350_trans.png\"/\u003e](https://jessedp.github.io/tablo-tools-electron/)\n\n\u003cbr/\u003e\n\nTablo Tools allows you to Bulk Export and Delete recordings from your Tablo as well as minimally (sans guide) watch Live TV.\n\u003cbr/\u003e\n\n### Hi!\n\n### You likely want to [head on over to the main site](https://jessedp.github.io/tablo-tools-electron/) for install instructions, documentation and videos to get started wrangling your Tablo.\n\n\u003cbr/\u003e\n\n### _If you're interested in the code and/or contributing, Welcome and I hope this helps..._\n\n\u003cbr/\u003e\n\n# Development\n\n## What This Is\n\nThe obvious:\n\n- **Cross-platform GUI** Win/Mac/Linux\n- **Export** easily put all of my recordings elsewhere\n- **Delete** please go away _quickly_\n\nAnd then doing other fun, weird, and/or hopefully useful things with/for/to a Tablo.\n\n## Parts and Pieces\n\nAt its simplest, this is a web app being distributed with a modified browser. If you're familiar with React/Vue/etc, this is mostly nothing new.\n\n[Electon React Boilerplate](https://github.com/electron-react-boilerplate/electron-react-boilerplate) (\u003c v1, flow, not typescript) was the base, thus this is a [React](https://reactjs.org/)+[Redux](https://redux.js.org/)+[Node](https://nodejs.org/en/) app.\n\nAside from that, the two main cogs are [ffmpeg](https://ffmpeg.org/)\n[nedb](https://github.com/louischatriot/nedb)/[nedb-async](https://github.com/Akumzy/nedb-async) (document database) and [tablo-api-js](https://github.com/jessedp/tablo-api-js).\n\n## Setup\n\nSomething like this should work...\n\n```bash\n (clone this repo via git or https)\n$ git clone git@github.com:jessedp/tablo-tools-electron.git\n$ yarn install\n$ yarn dev\n```\n\n## Packaging\n\nIf you get this far, we've probably already talked - but this isn't going to work out of the box because of the [Sentry.io](Sentry.io) integrations.\n\nTo package apps for the local platform:\n\n```bash\n$ yarn package-linux\n$ yarn package-win\n$ yarn package-mac\n```\n\nTo package apps for all platforms:\n\nFirst, refer to the [Multi Platform Build docs](https://www.electron.build/multi-platform-build) for dependencies.\n\nThen,\n\n```bash\n$ yarn package-all\n  - or -\n$ yarn package-linux\n$ yarn pacakge-win\n```\n\nTo run End-to-End Test\n\n```bash\n$ yarn build-e2e\n$ yarn test-e2e\n\n# Running e2e tests in a minimized window\n$ START_MINIMIZED=true yarn build-e2e\n$ yarn test-e2e\n```\n\n:bulb: You can debug your production build with devtools by simply setting the `DEBUG_PROD` env variable:\n\n```bash\nDEBUG_PROD=true yarn package\n```\n\n#### CSS Modules\n\nThis boilerplate is configured to use [css-modules](https://github.com/css-modules/css-modules) out of the box.\n\nAll `.css` file extensions will use css-modules unless it has `.global.css`.\n\nIf you need global styles, stylesheets with `.global.css` will not go through the\ncss-modules loader. e.g. `app.global.css`\n\nIf you want to import global css libraries (like `bootstrap`), you can just write the following code in `.global.css`:\n\n```css\n@import '~bootstrap/dist/css/bootstrap.css';\n```\n\n#### SASS support\n\nIf you want to use Sass in your app, you only need to import `.sass` files instead of `.css` once:\n\n```js\nimport './app.global.scss';\n```\n\n#### Static Type Checking\n\nThis project comes with Flow support out of the box! You can annotate your code with types, [get Flow errors as ESLint errors](https://github.com/amilajack/eslint-plugin-flowtype-errors), and get [type errors during runtime](https://github.com/codemix/flow-runtime) during development. Types are completely optional.\n\n#### Dispatching redux actions from main process\n\nSee [#118](https://github.com/electron-react-boilerplate/electron-react-boilerplate/issues/118) and [#108](https://github.com/electron-react-boilerplate/electron-react-boilerplate/issues/108)\n\nMIT © [Electron React Boilerplate](https://github.com/electron-react-boilerplate) and kinda me\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjessedp%2Ftablo-tools-electron","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjessedp%2Ftablo-tools-electron","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjessedp%2Ftablo-tools-electron/lists"}