{"id":48381033,"url":"https://github.com/jstarfilms/namistack","last_synced_at":"2026-04-05T20:03:34.137Z","repository":{"id":345593074,"uuid":"1186580911","full_name":"JStaRFilms/namistack","owner":"JStaRFilms","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-19T19:53:08.000Z","size":167,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-20T10:52:44.989Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/JStaRFilms.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-19T19:23:36.000Z","updated_at":"2026-03-19T19:53:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/JStaRFilms/namistack","commit_stats":null,"previous_names":["jstarfilms/namistack"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/JStaRFilms/namistack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JStaRFilms%2Fnamistack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JStaRFilms%2Fnamistack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JStaRFilms%2Fnamistack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JStaRFilms%2Fnamistack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JStaRFilms","download_url":"https://codeload.github.com/JStaRFilms/namistack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JStaRFilms%2Fnamistack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31448219,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T15:22:31.103Z","status":"ssl_error","status_checked_at":"2026-04-05T15:22:00.205Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2026-04-05T20:03:26.935Z","updated_at":"2026-04-05T20:03:34.131Z","avatar_url":"https://github.com/JStaRFilms.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NamiStack\n\nNamiStack is a desktop FFmpeg workbench for Windows. It gives you a visual way to open media files, choose actions like shrink, convert, or merge, and run FFmpeg without memorizing a wall of flags.\n\n![NamiStack full UI](assets/screenshots/full-ui.png)\n\n## What It Does\n\n- Open one or many media files with a native file picker\n- Inspect basic media metadata with `ffprobe`\n- Shrink clips to a target size\n- Convert clips to another format\n- Merge multiple clips into one lossless output\n- Toggle common FFmpeg flags with a searchable UI\n- Preview the exact command before running it\n- Watch progress and logs while jobs run\n- Auto-detect FFmpeg/FFprobe from PATH or common Windows install locations\n- Override FFmpeg paths manually in Settings if needed\n\n## Demo\n\n**Shrink a clip** — pick a file, set a target size, preview the command, run it.\n\n![Shrink workflow](assets/screenshots/shrink-clip.gif)\n\n**Advanced flags** — toggle common FFmpeg options with a searchable UI.\n\n![Advanced flags](assets/screenshots/advanced-flags.gif)\n\n## Tech Stack\n\n- Electron\n- React\n- TypeScript\n- Vite / electron-vite\n- Tailwind CSS v4\n\n## Requirements\n\n- Windows 10 or newer\n- `ffmpeg.exe` and `ffprobe.exe` available on PATH, or set manually inside the app\n- `pnpm`\n\n## Getting Started\n\nInstall dependencies:\n\n```bash\npnpm install\n```\n\nRun the app in development:\n\n```bash\npnpm dev\n```\n\nOr use the alias:\n\n```bash\npnpm start\n```\n\nBuild the app:\n\n```bash\npnpm build\n```\n\nPackage Windows installers and portable builds:\n\n```bash\npnpm dist:win\n```\n\nBuild just the portable EXE:\n\n```bash\npnpm dist:portable\n```\n\n## FFmpeg Setup\n\nNamiStack tries to detect FFmpeg and FFprobe automatically. If that fails, open the Settings panel and point it at the right paths.\n\n![FFmpeg settings](assets/screenshots/ffmpeg-settings.png)\n\n- `ffmpeg.exe`\n- `ffprobe.exe`\n\nIt will remember those paths locally.\n\n## Project Branding\n\nThe name `NamiStack` comes from the Japanese word `nami` (`波`), meaning wave. It fits the media-processing theme without feeling overdesigned.\n\n## Repository Layout\n\n- `src/main` - Electron main process and FFmpeg plumbing\n- `src/preload` - secure bridge into the renderer\n- `src/renderer` - React UI\n- `src/shared` - shared types and defaults\n- `docs` - build notes, feature docs, and handoff material\n- `assets/brand` - logo and icon assets\n\n## Packaging\n\nWindows packaging is configured in `package.json` with:\n\n- NSIS installer output\n- portable build output\n- custom app icon\n\nBuild artifacts are written to `release/`.\n\nFor the GitHub Actions release flow, see `docs/RELEASE.md`.\n\n## Status\n\nThe core FFmpeg workflow is implemented and the app is ready for packaging and release.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjstarfilms%2Fnamistack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjstarfilms%2Fnamistack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjstarfilms%2Fnamistack/lists"}