Skip to content

Commit

Permalink
cambio avconv => ffmpeg
Browse files Browse the repository at this point in the history
  • Loading branch information
ftoledo committed Mar 1, 2021
1 parent 4474f45 commit 61f6615
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
huayra-stopmotion (1:0.5.3.2) unstable; urgency=medium

* cambio avconv => ffmpeg

-- Fernando Toledo <ragnarok@docksud.com.ar> Mon, 01 Mar 2021 17:19:29 -0300

huayra-stopmotion (1:0.5.3.1) unstable; urgency=medium

* actuliazando paquete para Huayra 5
Expand Down
4 changes: 2 additions & 2 deletions src/js/ffmpeg-mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ Ffmpeg.prototype.saveToFile = function(fileName, callback) {
}
options = options.concat(['-y', fileName]);

exec('avconv ' + options.join(' '), function(err, stdout, stderr) {
exec('ffmpeg ' + options.join(' '), function(err, stdout, stderr) {
callback(stdout, stderr, err);
});

console.log('avconv ' + options.join(' '));
console.log('ffmpeg ' + options.join(' '));

return this;
};
Expand Down

0 comments on commit 61f6615

Please sign in to comment.