Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aavvironalex/mp4-to-mov
Shell script that that uses the ffmpeg command line program to convert .mp4 files to .mov files on Linux distributions.
https://github.com/aavvironalex/mp4-to-mov
mov-converter mp4-converter mp4-to-mov shell-script shellscript
Last synced: about 1 month ago
JSON representation
Shell script that that uses the ffmpeg command line program to convert .mp4 files to .mov files on Linux distributions.
- Host: GitHub
- URL: https://github.com/aavvironalex/mp4-to-mov
- Owner: AAVVIronAlex
- Created: 2023-07-02T07:21:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-02T05:52:20.000Z (over 1 year ago)
- Last Synced: 2024-10-17T12:23:55.888Z (3 months ago)
- Topics: mov-converter, mp4-converter, mp4-to-mov, shell-script, shellscript
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MP4toMOV
This shell script lets the user convert their .mp4 video files to .mov video files.
## Usecases
BlackMagic's DaVinci Resolve does not have support for .mp4 files on Linux, so this might come in handy if someone plans to edit videos with DaVinci Resolve on Linux.
## How to use
Download or clone (`git clone https://github.com/AAVVIronAlex/MP4-to-MOV.git`) and then go the .sh file to the directory your video is stored in, use the `cd` command to do that. When at the location in the termninal simply type `./mp4_to_mov_converter.sh` in the terminal.
This might take some time depending on the speed of your computer.
After the video has been converted it will appear in the folder called `transcoded` in the same directory as the `./mp4_to_mov_converter.sh` file is.
## Requirements
To run this shell script you will need the `ffmpeg` terminal program.
If you do not have `ffmpeg` installed you will have to download it.
### Downloading and installing `ffmpeg` on Debian based distributions
Update your repositories: `sudo apt update`
Install `ffmpeg`: `sudo apt install ffmpeg`
Verify installation: `ffmpeg -version`
### Downloading and installing `ffmpeg` on Arch based distributions (using pacman)
Update your repositories: `pacman -Syu`
Install `ffmpeg`: `pacman -S ffmpeg`
Verify installation: `ffmpeg --version`
### Downloading and installing `ffmpeg` on Gentoo
Installation: https://wiki.gentoo.org/wiki/FFmpeg#Installation