Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
ying_123 committed May 15, 2023
1 parent 678c31a commit 3fa8250
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/hls2mp4.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ var Hls2Mp4 = /** @class */ (function () {
anchor.click();
setTimeout(function () { return URL.revokeObjectURL(objectUrl); }, 100);
};
Hls2Mp4.version = '1.0.9';
Hls2Mp4.version = '1.1.0';
return Hls2Mp4;
}());

Expand Down
2 changes: 1 addition & 1 deletion dist/hls2mp4.js
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@
anchor.click();
setTimeout(function () { return URL.revokeObjectURL(objectUrl); }, 100);
};
Hls2Mp4.version = '1.0.9';
Hls2Mp4.version = '1.1.0';
return Hls2Mp4;
}());

Expand Down
2 changes: 1 addition & 1 deletion dist/hls2mp4.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@
anchor.click();
setTimeout(function () { return URL.revokeObjectURL(objectUrl); }, 100);
};
Hls2Mp4.version = '1.0.9';
Hls2Mp4.version = '1.1.0';
return Hls2Mp4;
}());

Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ var Hls2Mp4 = /** @class */ (function () {
anchor.click();
setTimeout(function () { return URL.revokeObjectURL(objectUrl); }, 100);
};
Hls2Mp4.version = '1.0.9';
Hls2Mp4.version = '1.1.0';
return Hls2Mp4;
}());

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default class Hls2Mp4 {
private tsDownloadConcurrency: number;
private totalSegments = 0;
private savedSegments = 0;
public static version = '1.0.9'
public static version = '1.1.0'

constructor({ maxRetry = 3, tsDownloadConcurrency = 10, ...options }: CreateFFmpegOptions & Hls2Mp4Options, onProgress?: ProgressCallback) {
this.instance = createFFmpeg(options);
Expand Down

0 comments on commit 3fa8250

Please sign in to comment.