Skip to content
This repository has been archived by the owner on Jul 21, 2022. It is now read-only.

VOD Video Download Stderr #1

Merged
merged 2 commits into from
Feb 4, 2022
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN apk update \

WORKDIR /tmp

COPY ./.github/Inter.otf ./
COPY ./Inter.otf ./

RUN mkdir -p /usr/share/fonts/opentype/

Expand Down
0 .github/Inter.otf → Inter.otf
100644 → 100755
File renamed without changes.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified docker-compose.yml
100644 → 100755
Empty file.
Empty file modified nginx.conf
100644 → 100755
Empty file.
4 changes: 4 additions & 0 deletions src/exec/exec.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ export class ExecService {
this.logger.verbose(`Video download ${vodInfo['id']} stdout: ${data}`);
videoDownloadLog.write(data);
});
downloadVideoChild.stderr.on('data', (data) => {
this.logger.verbose(`Video download ${vodInfo['id']} stderr: ${data}`);
videoDownloadLog.write(data);
});

downloadVideoChild.on('error', (error) => {
this.logger.error(
Expand Down