Opened 19 years ago
Closed 19 years ago
#2917 closed patch (fixed)
Missing $ in ffmpeg.pm
| Reported by: | Robert Kulagowski | Owned by: | xris |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.21 |
| Component: | perl / nuvexport | Version: | head |
| Severity: | low | Keywords: | |
| Cc: | Ticket locked: | no |
Description
Pretty sure that the following is accurate:
Index: nuvexport/export/ffmpeg.pm
===================================================================
--- nuvexport/export/ffmpeg.pm (revision 12505)
+++ nuvexport/export/ffmpeg.pm (working copy)
@@ -88,7 +88,7 @@
# Audio only?
$self->{'audioonly'} = $audioonly;
# Load the parameter version?
- $data = `ffmpeg -h 2>&1`;
+ $data = `$ffmpeg -h 2>&1`;
if ($data =~ /bit_rate_tolerance/) {
$self->{'ffmpeg_param_vers'} = 0;
}
Note:
See TracTickets
for help on using tickets.

(In [12521]) use the ffmpeg variable instead of hard-coded name. closes #2917