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: changelog.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,7 @@
1
1
2
+
**<spanstyle="color:#56adda">0.0.4</span>**
3
+
- Rebrand the plugin as Transcode Audio and add support for transcoding audio streams in video/media files while copying non-audio streams and preserving the source container
4
+
2
5
**<spanstyle="color:#56adda">0.0.3</span>**
3
6
- Add smart output target to Basic mode so matching audio codecs can be re-encoded when they are significantly above the recommended bitrate window
Copy file name to clipboardExpand all lines: description.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,11 @@
1
1
2
2
---
3
3
4
+
Transcode Audio is designed to transcode audio streams in media files.
5
+
6
+
It supports both audio-only source files and video/media containers. When processing a video/media file, the
7
+
plugin transcodes only the audio streams and copies all non-audio streams through to the output unchanged.
8
+
4
9
##### Links:
5
10
6
11
-[Support](https://unmanic.app/discord)
@@ -22,8 +27,10 @@ For information on the available encoder settings:
22
27
##### Additional Information:
23
28
24
29
:::note
25
-
The output file extension will always be determined by the selected audio encoder.
26
-
For example, selecting an MP3 encoder will always produce a *XXXX.mp3* file, and selecting an AAC encoder will always produce a *XXXX.m4a* file.
30
+
For audio-only files, the output file extension is determined by the selected audio encoder.
31
+
For example, selecting an MP3 encoder will produce a *XXXX.mp3* file, and selecting an AAC encoder will produce a *XXXX.m4a* file.
32
+
33
+
For video/media files, the plugin preserves the original container and only transcodes the audio streams.
27
34
:::
28
35
29
36
:::note
@@ -43,10 +50,10 @@ ffmpeg \
43
50
-hide_banner \
44
51
-loglevel info \
45
52
<CUSTOM MAIN OPTIONS HERE> \
46
-
-i /path/to/input/audio.wav \
53
+
-i /path/to/input/media.file \
47
54
<CUSTOM ADVANCED OPTIONS HERE> \
48
55
-map 0:0 -c:a:0 <CUSTOM AUDIO OPTIONS HERE> \
49
-
-y /path/to/output/audio.mp3
56
+
-y /path/to/output/media.file
50
57
```
51
58
:::
52
59
@@ -57,5 +64,5 @@ Enabling the *"Force transcoding ..."* option will force a transcode of the audi
57
64
58
65
A file will only be forced to be transcoded once. It will then be flagged in a local `.unmanic` file to prevent it being added to the pending tasks list in a loop.
59
66
60
-
However, a file previously flagged to be ignored by this will still be transcoded to apply any matching smart filters such as scaling, stripping data streams, etc.
67
+
However, a file previously flagged to be ignored by this will still be transcoded to apply any matching audio filter changes.
0 commit comments