2025-01-28 00:08:00 -05:00
|
|
|
{
|
|
|
|
writeShellApplication,
|
|
|
|
ffmpeg-full,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
writeShellApplication {
|
|
|
|
name = "convert-mkv";
|
2024-05-18 17:51:06 -04:00
|
|
|
|
2025-01-28 00:08:00 -05:00
|
|
|
runtimeInputs = [ffmpeg-full];
|
2024-05-18 17:51:06 -04:00
|
|
|
|
|
|
|
text = ''
|
|
|
|
extension="$1"
|
|
|
|
file="$2"
|
|
|
|
|
|
|
|
new_file="''${file%."$extension"}.mkv"
|
|
|
|
|
|
|
|
ffmpeg -i "$file" -c copy "$new_file" &&
|
|
|
|
rm "$file"
|
|
|
|
'';
|
|
|
|
}
|