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
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,8 @@ While working with audio/video we usually do a set of tasks with the media.
103
103
104
104
## Transcoding
105
105
106
+

107
+
106
108
**What?** the act of converting one of the streams (audio or video) from one CODEC to another one.
107
109
108
110
**Why?** sometimes some devices (TVs, smart phones, console and etc) doesn't support X but Y and newer CODECs provide better compression rate.
@@ -117,20 +119,24 @@ bunny_1080p_60fps_h265.mp4
117
119
118
120
## Transmuxing
119
121
122
+

123
+
120
124
**What?** the act of converting from one format (container) to another one.
121
125
122
126
**Why?** sometimes some devices (TVs, smart phones, console and etc) doesn't support X but Y and sometimes newer containers provide modern required features.
123
127
124
-
**How?** converting a `mp4` to a `mkv` (matroska).
128
+
**How?** converting a `mp4` to a `webm`.
125
129
```bash
126
130
$ ffmpeg \
127
131
-i bunny_1080p_60fps.mp4 \
128
132
-c copy \ # just saying to ffmpeg to skip encoding
129
-
bunny_1080p_60fps.mkv
133
+
bunny_1080p_60fps.webm
130
134
```
131
135
132
136
## Transrating
133
137
138
+

139
+
134
140
**What?** the act of changing the bit rate, or producing other renditions.
135
141
136
142
**Why?** people will try to watch your video in a `2G` (edge) connection using a less powerful smart phone or in a `fiber` Internet connection on their 4K TVs therefore you should offer more than on rendition of the same video with different bit rate.
@@ -147,6 +153,8 @@ Usually we'll be using transrating with transsizing. Werner Robitza wrote anothe
147
153
148
154
## Transsizing
149
155
156
+

157
+
150
158
**What?** the act of converting from one resolution to another one, as said before transsizing is often used with transrating.
151
159
152
160
**Why?** reasons are about the same as for the transrating.
0 commit comments