{"id":22711213,"url":"https://github.com/oop7/ffmpeg-install-guide","last_synced_at":"2025-04-23T03:47:58.755Z","repository":{"id":266957826,"uuid":"899872930","full_name":"oop7/ffmpeg-install-guide","owner":"oop7","description":"FFmpeg installation Guide for Windows, macOS, and Linux.","archived":false,"fork":false,"pushed_at":"2025-01-30T15:27:30.000Z","size":20,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-23T03:47:48.183Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Batchfile","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/oop7.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-12-07T08:39:47.000Z","updated_at":"2025-04-07T14:09:23.000Z","dependencies_parsed_at":"2024-12-07T13:55:20.834Z","dependency_job_id":null,"html_url":"https://github.com/oop7/ffmpeg-install-guide","commit_stats":null,"previous_names":["oop7/ffmpeg-install-guide"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oop7%2Fffmpeg-install-guide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oop7%2Fffmpeg-install-guide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oop7%2Fffmpeg-install-guide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oop7%2Fffmpeg-install-guide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oop7","download_url":"https://codeload.github.com/oop7/ffmpeg-install-guide/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250366682,"owners_count":21418768,"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":[],"created_at":"2024-12-10T12:14:57.930Z","updated_at":"2025-04-23T03:47:58.734Z","avatar_url":"https://github.com/oop7.png","language":"Batchfile","readme":"# FFmpeg Installation Guide\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nA comprehensive guide and automation scripts for installing FFmpeg across multiple operating systems. This repository provides easy-to-follow instructions and automated installation scripts to simplify the FFmpeg setup process.\n\n## Table of Contents\n- [Features](#features)\n- [Windows Installation](#windows-installation)\n  - [Automated Installation](#automated-installation)\n  - [Manual Installation](#manual-installation)\n- [macOS Installation](#macos-installation)\n- [Linux Installation](#linux-installation)\n- [Verification](#verification)\n- [Troubleshooting](#troubleshooting)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Features\n- Automated installation scripts for Windows\n- Cross-platform installation guides\n- Video tutorials for Windows and macOS\n- Multiple installation methods for each operating system\n- System path configuration included\n\n## Windows Installation\n\n### Automated Installation\n\n#### Method 1: Using 7-Zip (Recommended)\n**Prerequisites:**\n- 7-Zip, WinRAR, or any 7-Zip fork installed\n\n**Steps:**\n1. Download [`install_ffmpeg_7z.bat`](https://github.com/oop7/ffmpeg-install-guide/releases/download/v1.0/ffmpeg_7z.bat)\n2. Run the script as administrator (UAC prompt will appear)\n3. Wait for the installation to complete\n\n#### Method 2: Using ZIP (No Dependencies)\n**Prerequisites:**\n- None (uses built-in Windows tools)\n\n**Steps:**\n1. Download [`install_ffmpeg_zip.bat`](https://github.com/oop7/ffmpeg-install-guide/releases/download/v1.0/ffmpeg_zip.bat)\n2. Run the script as administrator (UAC prompt will appear)\n3. Wait for the installation to complete\n\n### Manual Installation\n1. Download FFmpeg from one of these sources:\n   - [FFmpeg Official Website](https://ffmpeg.org/download.html)\n   - [Codex FFmpeg Releases](https://github.com/GyanD/codexffmpeg/releases)\n\n2. Choose the appropriate package:\n   - `ffmpeg-release-essentials.zip` for basic functionality\n   - `ffmpeg-release-full.zip` for complete feature set\n\n3. System Setup:\n   1. Extract the ZIP file to a permanent location (e.g., `C:\\ffmpeg`)\n   2. Add FFmpeg to System Path:\n      - Open System Properties (Right-click `This PC` → Properties)\n      - Click `Advanced system settings`\n      - Click `Environment Variables`\n      - Under `System variables`, select `Path` and click `Edit`\n      - Add new entry: `C:\\ffmpeg\\bin` (adjust path if needed)\n      - Click `OK` on all windows\n\n📺 **Video Tutorial:** [FFmpeg Windows Installation Guide](https://youtu.be/5xgegeBL0kw)\n\n## macOS Installation\n\n### Using Homebrew (Recommended)\n```bash\n# Install Homebrew (if not installed)\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n\n# Install FFmpeg\nbrew install ffmpeg\n```\n\n### Using MacPorts\n1. Install [MacPorts](https://www.macports.org/install.php)\n2. Run the installation command:\n```bash\nsudo port install ffmpeg\n```\n\n📺 **Video Tutorial:** [FFmpeg macOS Installation Guide](https://youtu.be/dJ8y-VlMNAo)\n\n## Linux Installation\n\n### Package Managers\n\n**Ubuntu/Debian:**\n```bash\nsudo apt update\nsudo apt install ffmpeg\n```\n\n**Fedora:**\n```bash\nsudo dnf install ffmpeg\n```\n\n**Arch Linux:**\n```bash\nsudo pacman -S ffmpeg\n```\n\n### Universal Installation\n**Using Snap:**\n```bash\nsudo snap install ffmpeg\n```\n\n## Verification\nAfter installation, verify FFmpeg is correctly installed:\n```bash\nffmpeg -version\n```\n\n## Troubleshooting\n\n### Common Issues\n1. **Windows Path Not Updated:**\n   - Log out and log back in\n   - Or restart your computer\n\n2. **Permission Denied:**\n   - Ensure you're running scripts as administrator\n   - Check file permissions\n\n3. **Installation Failed:**\n   - Try the alternative installation method\n   - Check your internet connection\n   - Verify system requirements\n\n## Contributing\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n- FFmpeg development team and community\n- Contributors to this installation guide\n- Package maintainers across different platforms\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foop7%2Fffmpeg-install-guide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foop7%2Fffmpeg-install-guide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foop7%2Fffmpeg-install-guide/lists"}