{"id":48878156,"url":"https://github.com/pulkitpareek18/media-processing-pipeline","last_synced_at":"2026-04-16T01:33:42.438Z","repository":{"id":341375115,"uuid":"1044258482","full_name":"pulkitpareek18/media-processing-pipeline","owner":"pulkitpareek18","description":"FFmpeg-based C/C++ pipeline that converts one source video into multiple lower-resolution variants with automated resolution detection and structured output naming.","archived":false,"fork":false,"pushed_at":"2026-03-01T11:55:57.000Z","size":55513,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-01T14:58:43.071Z","etag":null,"topics":["bitrate-ladder","c","cli","cpp","ffmpeg","ffprobe","media-pipeline","transcoding","video-processing"],"latest_commit_sha":null,"homepage":null,"language":"C","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/pulkitpareek18.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2025-08-25T12:18:11.000Z","updated_at":"2026-03-01T11:55:34.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pulkitpareek18/media-processing-pipeline","commit_stats":null,"previous_names":["pulkitpareek18/media-processing-pipeline"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/pulkitpareek18/media-processing-pipeline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulkitpareek18%2Fmedia-processing-pipeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulkitpareek18%2Fmedia-processing-pipeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulkitpareek18%2Fmedia-processing-pipeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulkitpareek18%2Fmedia-processing-pipeline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pulkitpareek18","download_url":"https://codeload.github.com/pulkitpareek18/media-processing-pipeline/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulkitpareek18%2Fmedia-processing-pipeline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31867711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: 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":["bitrate-ladder","c","cli","cpp","ffmpeg","ffprobe","media-pipeline","transcoding","video-processing"],"created_at":"2026-04-16T01:33:41.951Z","updated_at":"2026-04-16T01:33:42.414Z","avatar_url":"https://github.com/pulkitpareek18.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Media Processing Pipeline\n\n[![CI](https://github.com/pulkitpareek18/media-processing-pipeline/actions/workflows/ci.yml/badge.svg)](https://github.com/pulkitpareek18/media-processing-pipeline/actions/workflows/ci.yml)\n![Last Commit](https://img.shields.io/github/last-commit/pulkitpareek18/media-processing-pipeline)\n![Stars](https://img.shields.io/github/stars/pulkitpareek18/media-processing-pipeline)\n![Language](https://img.shields.io/badge/Languages-C%20%7C%20C%2B%2B-blue)\n\n## Release Snapshot (March 2026)\n\n- Status: Active\n- Type: CLI video processing utility\n- Core tooling: `ffprobe` + `ffmpeg`\n- CI checks: C build + C++ syntax check\n\n## Demo Card\n\n[![Media Processing Pipeline Demo Card](https://opengraph.githubassets.com/1/pulkitpareek18/media-processing-pipeline)](https://github.com/pulkitpareek18/media-processing-pipeline/blob/main/video.mp4)\n\nCLI utility to generate lower-resolution variants from a single source video using `ffprobe` + `ffmpeg`.\n\n## What It Does\n\nGiven one input video file, the pipeline:\n\n1. Detects source resolution with `ffprobe`\n2. Creates an output folder named after the source file stem\n3. Copies the original source into that folder\n4. Produces subordinate resolutions (for example: 1080p -\u003e 720p, 480p, 360p, 240p, 144p)\n\nOutput naming format:\n\n```text\n\u003cstem\u003e/\u003cstem\u003e \u003cresolution\u003e.mp4\n```\n\n## Implementations\n\n- `process_video.c` (cross-platform oriented C implementation)\n- `process_video.cpp` (C++ implementation; currently tuned for Windows `_popen`)\n\n## Prerequisites\n\n- `ffmpeg` available on `PATH`\n- `ffprobe` available on `PATH`\n- C/C++ compiler (depending on implementation)\n\n## Build\n\n### C (macOS/Linux)\n\n```bash\ncc process_video.c -o process_video\n```\n\n### C (Windows, MinGW)\n\n```bash\ngcc process_video.c -o process_video.exe\n```\n\n### C++ (Windows, MinGW)\n\n```bash\ng++ process_video.cpp -std=c++17 -o process_video_cpp.exe\n```\n\n## Usage\n\n```bash\n./process_video input.mp4\n```\n\nWindows:\n\n```bash\nprocess_video.exe input.mp4\n```\n\n## Example\n\nInput:\n\n```text\nvideo.mp4 (1080p)\n```\n\nGenerated:\n\n```text\nvideo/video 1080.mp4\nvideo/video 720.mp4\nvideo/video 480.mp4\nvideo/video 360.mp4\nvideo/video 240.mp4\nvideo/video 144.mp4\n```\n\n## Notes\n\n- The tool currently preserves audio stream via `-c:a copy`.\n- Processing time depends on source duration, resolution, and machine performance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulkitpareek18%2Fmedia-processing-pipeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpulkitpareek18%2Fmedia-processing-pipeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulkitpareek18%2Fmedia-processing-pipeline/lists"}