Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

auto build test #543

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ var plugin = function (args) {
}
});
}
// auto build test
return {
outputFileObj: args.inputFileObj,
outputNumber: hasCodec ? 1 : 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ var details = function () { return ({
'eac3',
'dca',
'flac',
'libopus',
'mp2',
'libmp3lame',
'truehd',
Expand Down Expand Up @@ -148,6 +149,9 @@ var plugin = function (args) {
if (audioEncoder === 'libmp3lame') {
audioCodec = 'mp3';
}
if (audioEncoder === 'libopus') {
audioCodec = 'opus';
}
var addedOrExists = attemptMakeStream({
args: args,
langTag: langTag,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ var details = function () { return ({
'mpeg2video',
'mjpeg',
'flv',
'mpeg4',
'theora'
'theora',
],
},
tooltip: 'Specify the codec check for',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ const plugin = (args:IpluginInputArgs):IpluginOutputArgs => {
});
}

// auto build test

return {
outputFileObj: args.inputFileObj,
outputNumber: hasCodec ? 1 : 2,
Expand Down