You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,11 @@ Script to reduce the **size of video files** using FFMPEG.
6
6
Idea of this script: https://coderunner.io/shrink-videos-with-ffmpeg-and-preserve-metadata/
7
7
8
8
9
-
Which codecs are supported?
9
+
Which input codecs are supported?
10
10
--------------------------------------
11
11
-**H.264**:
12
12
-**CRF** (Constant Rate Factor). Basically translates as *"try to keep this quality overall"*, and will use more or less bits at different parts of the video, depending on the content. (the **bitrate* is variable**).
13
+
-**Output codec**. Possible options are **H.264** or **H.265** codecs. When using H.265 video is reduced half of its size maintaining the same video quality.
13
14
-**Rest of video properties**. They are not modified.
14
15
-**Videos with different codecs**:
15
16
- They are copied to another folder without being modified
@@ -18,6 +19,9 @@ Which codecs are supported?
18
19
How to use
19
20
------------
20
21
- Install **Python** (3.7 version recommended)
22
+
-[Optional] Configure virtualenv:
23
+
- Install virtual env: `python3.7 -m venv venv`
24
+
- Activate it: `source venv/bin/activate`
21
25
- Install **FFmpeg** and add it to system PATH
22
26
- Install **FFprobe** (*This is installed on ffmpeg installation by default*)
0 commit comments