1
0
mirror of https://gitlab.com/ytdl-org/youtube-dl.git synced 2025-11-02 06:38:24 -05:00

Merge pull request #8611 from remitamine/ffmpegfd

[downloader/external] Add FFmpegFD
This commit is contained in:
remitamine
2016-03-13 21:30:27 +01:00
4 changed files with 122 additions and 78 deletions

View File

@@ -25,6 +25,19 @@ from ..utils import (
)
EXT_TO_OUT_FORMATS = {
"aac": "adts",
"m4a": "ipod",
"mka": "matroska",
"mkv": "matroska",
"mpg": "mpeg",
"ogv": "ogg",
"ts": "mpegts",
"wma": "asf",
"wmv": "asf",
}
class FFmpegPostProcessorError(PostProcessingError):
pass