{"id":14985014,"url":"https://github.com/orthdron/subatic-transcoding","last_synced_at":"2025-04-10T23:15:36.944Z","repository":{"id":251565276,"uuid":"837779678","full_name":"orthdron/subatic-transcoding","owner":"orthdron","description":"Video to HLS converter","archived":false,"fork":false,"pushed_at":"2024-12-18T21:42:14.000Z","size":54,"stargazers_count":13,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T23:15:31.086Z","etag":null,"topics":["ffmpeg","hls","python","video-encoder","video-processing"],"latest_commit_sha":null,"homepage":"https://subatic.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/orthdron.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}},"created_at":"2024-08-04T02:28:38.000Z","updated_at":"2025-03-07T02:31:13.000Z","dependencies_parsed_at":"2024-08-04T04:21:50.425Z","dependency_job_id":"0fdc7f8e-4e5b-452c-9a1e-47981823c982","html_url":"https://github.com/orthdron/subatic-transcoding","commit_stats":{"total_commits":23,"total_committers":3,"mean_commits":7.666666666666667,"dds":0.4782608695652174,"last_synced_commit":"58eaf0146e14034d7f04530ccc5b0c21192a3d33"},"previous_names":["orthdron/subatic-transcoding"],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orthdron%2Fsubatic-transcoding","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orthdron%2Fsubatic-transcoding/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orthdron%2Fsubatic-transcoding/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orthdron%2Fsubatic-transcoding/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/orthdron","download_url":"https://codeload.github.com/orthdron/subatic-transcoding/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248312134,"owners_count":21082638,"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":["ffmpeg","hls","python","video-encoder","video-processing"],"created_at":"2024-09-24T14:10:06.140Z","updated_at":"2025-04-10T23:15:36.922Z","avatar_url":"https://github.com/orthdron.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n       \u003ca href=\"https://subatic.com\"\u003e\n          \u003cimg src=\"https://github.com/orthdron/subatic/raw/main/docs/logo/combined/png/transparent.png\"/\u003e\n      \u003c/a\u003e\n\u003c/p\u003e\n\n\n## Subatic Transcoder\n\nSubatic Transcoder is a tool designed for media transcoding. It offers flexibility in deployment, allowing you to use either a Docker container or Ansible to deploy it on your servers. This README provides the necessary information to get started with both methods.\n\n## Deployment Options\n\n### 1. Docker Container\n\nTo deploy Subatic Transcoder using Docker, follow these steps:\n\n1. Clone the repository:\n\n   ```sh\n   git clone https://github.com/orthdron/subatic-transcoder.git\n   cd subatic-transcoder\n   ```\n\n2. Build the Docker image:\n\n   ```sh\n   docker build -t subatic-transcoder .\n   ```\n\n3. Run the Docker container:\n   ```sh\n   docker run -d --env-file .env subatic-transcoder\n   ```\n\n### 2. Ansible Deployment\n\nTo deploy Subatic Transcoder using Ansible, follow these steps:\n\n1. Clone the repository:\n\n   ```sh\n   git clone https://github.com/orthdron/subatic-transcoder.git\n   cd subatic-transcoder/ansible\n   ```\n\n2. Update the `hosts` file with your server details.\n\n3. Run the Ansible playbook:\n   ```sh\n   ansible-playbook -i hosts playbook.yml\n   ```\n\n## Configuration\n\nA sample environment file is provided below. Update it with your specific details and save it as `.env` in the root directory of your project.\n\n```plaintext\n# Enable or disable SQS\nENABLE_SQS=false\nSQS_URL=YOUR_SQS_URL\n\n# Download bucket configuration\n\nRAWFILES_S3_ENDPOINT=http://localhost:9000\nRAWFILES_S3_ACCESS_KEY_ID=YOUR_RAWFILES_S3_ACCESS_KEY_ID\nRAWFILES_S3_SECRET_ACCESS_KEY=YOUR_RAWFILES_S3_SECRET_ACCESS_KEY\nRAWFILES_S3_REGION=YOUR_RAWFILES_S3_REGION\nRAWFILES_S3_BUCKET=YOUR_RAWFILES_BUCKET_NAME\n\n# Upload bucket configuration: Can be same as download if public\nPROCESSED_S3_ACCESS_KEY_ID=YOUR_PROCESSED_S3_ACCESS_KEY_ID\nPROCESSED_S3_SECRET_ACCESS_KEY=YOUR_PROCESSED_S3_SECRET_ACCESS_KEY\nPROCESSED_S3_REGION=YOUR_PROCESSED_S3_REGION\nPROCESSED_S3_BUCKET=YOUR_PROCESSED_BUCKET_NAME\nPROCESSED_S3_ENDPOINT=YOUR_PROCESSED_S3_ENDPOINT\n\n\n# Webhook configuration\nWEBHOOK_URL=http://localhost:3000/\nWEBHOOK_TOKEN=YOUR_WEBHOOK_TOKEN\n```\n\nMore detailed documentation will be available soon. For any bugs, please report them using GitHub Issues.\n\nIf you have questions, feel free to reach out:\n\n- [Contact on X](https://x.com/orthdron)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forthdron%2Fsubatic-transcoding","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Forthdron%2Fsubatic-transcoding","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forthdron%2Fsubatic-transcoding/lists"}