We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cb973d commit 8628f43Copy full SHA for 8628f43
trunk/export/ffmpeg.pm
@@ -109,7 +109,10 @@ package export::ffmpeg;
109
$ffmpeg .= " -r " . $episode->{'finfo'}{'fps'};
110
$ffmpeg .= " -i /tmp/fifodir_$$/vidout -f yuv4mpegpipe -";
111
$ffmpeg .= " 2> /dev/null | ";
112
- $ffmpeg .= "$NICE yuvdenoise -F -r 16";
+ $ffmpeg .= "$NICE yuvdenoise -r 16";
113
+ if ($self->{'deinterlace'}) {
114
+ $ffmpeg .= " -F";
115
+ }
116
if ($self->{'crop'}) {
117
$ffmpeg .= " -b $crop_w,$crop_h,-$crop_w,-$crop_h";
118
}
@@ -135,7 +138,7 @@ package export::ffmpeg;
135
138
$ffmpeg .= " -i $videofifo";
136
139
137
140
# Filters
- if ($self->{'deinterlace'}) {
141
+ if ($self->{'deinterlace'} && !$self->{'noise_reduction'}) {
142
$ffmpeg .= " -deinterlace";
143
144
0 commit comments