You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 22, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+13-14Lines changed: 13 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,30 +2,29 @@
2
2
3
3
## Reporting issues
4
4
5
-
Please start by [reading the FAQ][faq] first. If your question is not answered, here are some guidelines on how to effectively report issues.
5
+
Please start by [reading the FAQ][faq] first. If your question is not answered, here are some guidelines on how to effectively report issues.
6
6
7
7
### Required information
8
8
9
9
When reporting issues be sure to include at least:
10
10
11
-
* Some code that may be used to reproduce the problem
12
-
* Which version of fluent-ffmpeg, of ffmpeg and which OS you're using
13
-
* If the problem only happens with some input sources, please include a link to a source that may be used to reproduce the problem
14
-
* Be sure to include the full error message when there is one
15
-
* When an ffmpeg error happens (eg. 'ffmpeg exited with code 1'), you should also include the full output from ffmpeg (stdout and stderr), as it may contain useful information about what whent wrong. You can do that by looking at the 2nd and 3rd parameters of the `error` event handler on an FfmpegCommand, for example:
11
+
- Some code that may be used to reproduce the problem
12
+
- Which version of fluent-ffmpeg, of ffmpeg and which OS you're using
13
+
- If the problem only happens with some input sources, please include a link to a source that may be used to reproduce the problem
14
+
- Be sure to include the full error message when there is one
15
+
- When an ffmpeg error happens (eg. 'ffmpeg exited with code 1'), you should also include the full output from ffmpeg (stdout and stderr), as it may contain useful information about what whent wrong. You can do that by looking at the 2nd and 3rd parameters of the `error` event handler on an FfmpegCommand, for example:
16
16
17
17
```js
18
-
ffmpeg('some/input.mp4')
19
-
.on('error', function(err, stdout, stderr) {
20
-
console.log('An error happened: '+err.message);
21
-
console.log('ffmpeg standard output:\n'+ stdout);
22
-
console.log('ffmpeg standard error:\n'+ stderr);
23
-
});
18
+
ffmpeg('some/input.mp4').on('error', function (err, stdout, stderr) {
19
+
console.log('An error happened: '+err.message)
20
+
console.log('ffmpeg standard output:\n'+ stdout)
21
+
console.log('ffmpeg standard error:\n'+ stderr)
22
+
})
24
23
```
25
24
26
25
### Ffmpeg usage
27
26
28
-
If your command ends up with an ffmpeg error (eg. 'ffmpeg exited with code X : ...'), be sure to try the command manually from command line. You can get the ffmpeg command line that is executed for a specific Fluent-ffmpeg command by using the `start` event:
27
+
If your command ends up with an ffmpeg error (eg. 'ffmpeg exited with code X : ...'), be sure to try the command manually from command line. You can get the ffmpeg command line that is executed for a specific Fluent-ffmpeg command by using the `start` event:
29
28
30
29
```js
31
30
ffmpeg('some/input.mp4')
@@ -37,7 +36,7 @@ ffmpeg('some/input.mp4')
37
36
38
37
If it does not work, you most likely have a ffmpeg-related problem that does not fit as a fluent-ffmpeg issue; in that case head to the [ffmpeg documentation](ffmpeg.org/documentation.html) to find out what you did wrong.
39
38
40
-
If it _does_ work, please double-check how you escaped arguments and options when passing them to fluent-ffmpeg. For example, when running from command line, you may have to quote arguments to tell your shell that a space is indeed part of a filename or option. When using fluent-ffmpeg, you don't have to do that, as you're already passing options and arguments separately. Here's a (dumb) example:
39
+
If it _does_ work, please double-check how you escaped arguments and options when passing them to fluent-ffmpeg. For example, when running from command line, you may have to quote arguments to tell your shell that a space is indeed part of a filename or option. When using fluent-ffmpeg, you don't have to do that, as you're already passing options and arguments separately. Here's a (dumb) example:
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE.md
+6-11Lines changed: 6 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,31 +2,26 @@
2
2
3
3
### Version information
4
4
5
-
* fluent-ffmpeg version:
6
-
* ffmpeg version:
7
-
* OS:
5
+
- fluent-ffmpeg version:
6
+
- ffmpeg version:
7
+
- OS:
8
8
9
9
### Code to reproduce
10
10
11
11
```js
12
12
13
-
14
13
```
15
14
16
15
(note: if the problem only happens with some inputs, include a link to such an input file)
17
16
18
17
### Expected results
19
18
20
-
21
-
22
19
### Observed results
23
20
24
-
25
-
26
21
### Checklist
27
22
28
23
<!-- you may delete that checklist when you have checked everything -->
29
24
30
-
*[ ] I have read the [FAQ](https://github.com/fluent-ffmpeg/node-fluent-ffmpeg/wiki/FAQ)
31
-
*[ ] I tried the same with command line ffmpeg and it works correctly (hint: if the problem also happens this way, this is an ffmpeg problem and you're not reporting it to the right place)
32
-
*[ ] I have included full stderr/stdout output from ffmpeg
25
+
-[ ] I have read the [FAQ](https://github.com/fluent-ffmpeg/node-fluent-ffmpeg/wiki/FAQ)
26
+
-[ ] I tried the same with command line ffmpeg and it works correctly (hint: if the problem also happens this way, this is an ffmpeg problem and you're not reporting it to the right place)
27
+
-[ ] I have included full stderr/stdout output from ffmpeg
Copy file name to clipboardExpand all lines: LICENSE
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
(The MIT License)
2
2
3
-
Copyright (c) 2011-2015 The fluent-ffmpeg contributors
3
+
Copyright (c) 2011-2023 The fluent-ffmpeg contributors
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
0 commit comments