Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f00b51a

Browse files
adds images to common tasks
1 parent a30171d commit f00b51a

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ While working with audio/video we usually do a set of tasks with the media.
103103

104104
## Transcoding
105105

106+
![transcoding](/img/transcoding.png)
107+
106108
**What?** the act of converting one of the streams (audio or video) from one CODEC to another one.
107109

108110
**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
117119

118120
## Transmuxing
119121

122+
![transmuxing](/img/transmuxing.png)
123+
120124
**What?** the act of converting from one format (container) to another one.
121125

122126
**Why?** sometimes some devices (TVs, smart phones, console and etc) doesn't support X but Y and sometimes newer containers provide modern required features.
123127

124-
**How?** converting a `mp4` to a `mkv` (matroska).
128+
**How?** converting a `mp4` to a `webm`.
125129
```bash
126130
$ ffmpeg \
127131
-i bunny_1080p_60fps.mp4 \
128132
-c copy \ # just saying to ffmpeg to skip encoding
129-
bunny_1080p_60fps.mkv
133+
bunny_1080p_60fps.webm
130134
```
131135

132136
## Transrating
133137

138+
![transrating](/img/transrating.png)
139+
134140
**What?** the act of changing the bit rate, or producing other renditions.
135141

136142
**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
147153

148154
## Transsizing
149155

156+
![transsizing](/img/transrating.png)
157+
150158
**What?** the act of converting from one resolution to another one, as said before transsizing is often used with transrating.
151159

152160
**Why?** reasons are about the same as for the transrating.

img/transcoding.png

62.3 KB
Loading

img/transmuxing.png

61.9 KB
Loading

img/transrating.png

52.4 KB
Loading

img/transsizing.png

49.8 KB
Loading

0 commit comments

Comments
 (0)