mirror of
https://github.com/snobu/destreamer.git
synced 2026-02-17 20:19:41 +00:00
28
README.md
28
README.md
@@ -108,31 +108,35 @@ Options:
|
|||||||
--help Show help [boolean]
|
--help Show help [boolean]
|
||||||
--version Show version number [boolean]
|
--version Show version number [boolean]
|
||||||
--username, -u The username used to log into Microsoft Stream (enabling this will fill in the email field for
|
--username, -u The username used to log into Microsoft Stream (enabling this will fill in the email field for
|
||||||
you) [string]
|
you). [string]
|
||||||
--videoUrls, -i List of video urls [array]
|
--videoUrls, -i List of urls to videos or Microsoft Stream groups. [array]
|
||||||
--inputFile, -f Path to text file containing URLs and optionally outDirs. See the README for more on outDirs.
|
--inputFile, -f Path to text file containing URLs and optionally outDirs. See the README for more on outDirs.
|
||||||
[string]
|
[string]
|
||||||
|
--outputDirectory, -o The directory where destreamer will save your downloads. [string] [default: "videos"]
|
||||||
--outputTemplate, -t The template for the title. See the README for more info.
|
--outputTemplate, -t The template for the title. See the README for more info.
|
||||||
[string] [default: "{title} - {publishDate} {uniqueId}"]
|
[string] [default: "{title} - {publishDate} {uniqueId}"]
|
||||||
--outputDirectory, -o The directory where destreamer will save your downloads [string] [default: "videos"]
|
--keepLoginCookies, -k Let Chromium cache identity provider cookies so you can use "Remember me" during login.
|
||||||
--keepLoginCookies, -k Let Chromium cache identity provider cookies so you can use "Remember me" during login
|
Must be used every subsequent time you launch Destreamer if you want to log in automatically.
|
||||||
[boolean] [default: false]
|
[boolean] [default: false]
|
||||||
--noExperiments, -x Do not attempt to render video thumbnails in the console [boolean] [default: false]
|
--noExperiments, -x Do not attempt to render video thumbnails in the console. [boolean] [default: false]
|
||||||
--simulate, -s Disable video download and print metadata information to the console[boolean] [default: false]
|
--simulate, -s Disable video download and print metadata information to the console.
|
||||||
--verbose, -v Print additional information to the console (use this before opening an issue on GitHub)
|
|
||||||
[boolean] [default: false]
|
[boolean] [default: false]
|
||||||
--closedCaptions, --cc Check if closed captions are aviable and let the user choose which one to download (will not
|
--verbose, -v Print additional information to the console (use this before opening an issue on GitHub).
|
||||||
ask if only one aviable) [boolean] [default: false]
|
[boolean] [default: false]
|
||||||
--noCleanup, --nc Do not delete the downloaded video file when an FFmpeg error occurs [boolean] [default: false]
|
--closedCaptions, --cc Check if closed captions are available and let the user choose which one to download (will not
|
||||||
|
ask if only one available). [boolean] [default: false]
|
||||||
|
--noCleanup, --nc Do not delete the downloaded video file when an FFmpeg error occurs.[boolean] [default: false]
|
||||||
--vcodec Re-encode video track. Specify FFmpeg codec (e.g. libx265) or set to "none" to disable video.
|
--vcodec Re-encode video track. Specify FFmpeg codec (e.g. libx265) or set to "none" to disable video.
|
||||||
[string] [default: "copy"]
|
[string] [default: "copy"]
|
||||||
--acodec Re-encode audio track. Specify FFmpeg codec (e.g. libopus) or set to "none" to disable audio.
|
--acodec Re-encode audio track. Specify FFmpeg codec (e.g. libopus) or set to "none" to disable audio.
|
||||||
[string] [default: "copy"]
|
[string] [default: "copy"]
|
||||||
--format Output container format (mkv, mp4, mov, anything that FFmpeg supports)
|
--format Output container format (mkv, mp4, mov, anything that FFmpeg supports).
|
||||||
[string] [default: "mkv"]
|
[string] [default: "mkv"]
|
||||||
--skip Skip download if file already exists [boolean] [default: false]
|
--skip Skip download if file already exists. [boolean] [default: false]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- both --videoUrls and --inputFile also accept Microsoft Teams Groups url so if your Organization placed the videos you are interested in a group you can copy the link and Destreamer will download all the videos it can inside it! A group url looks like this https://web.microsoftstream.com/group/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
||||||
|
|
||||||
- Passing `--username` is optional. It's there to make logging in faster (the username field will be populated automatically on the login form).
|
- Passing `--username` is optional. It's there to make logging in faster (the username field will be populated automatically on the login form).
|
||||||
|
|
||||||
- You can use an absolute path for `-o` (output directory), for example `/mnt/videos`.
|
- You can use an absolute path for `-o` (output directory), for example `/mnt/videos`.
|
||||||
|
|||||||
@@ -43,6 +43,11 @@ export class ApiClient {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to initialize/retrive the active ApiClient
|
||||||
|
*
|
||||||
|
* @param session used if initializing
|
||||||
|
*/
|
||||||
public static getInstance(session?: Session): ApiClient {
|
public static getInstance(session?: Session): ApiClient {
|
||||||
if (!ApiClient.instance) {
|
if (!ApiClient.instance) {
|
||||||
ApiClient.instance = new ApiClient(session);
|
ApiClient.instance = new ApiClient(session);
|
||||||
@@ -51,6 +56,16 @@ export class ApiClient {
|
|||||||
return ApiClient.instance;
|
return ApiClient.instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public setSession(session: Session): void {
|
||||||
|
if (!ApiClient.instance) {
|
||||||
|
logger.warn("Trying to update ApiCient session when it's not initialized!");
|
||||||
|
}
|
||||||
|
|
||||||
|
this.session = session;
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Call Microsoft Stream API. Base URL is sourced from
|
* Call Microsoft Stream API. Base URL is sourced from
|
||||||
* the session object and prepended automatically.
|
* the session object and prepended automatically.
|
||||||
|
|||||||
@@ -13,12 +13,12 @@ export const argv: any = yargs.options({
|
|||||||
username: {
|
username: {
|
||||||
alias: 'u',
|
alias: 'u',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
describe: 'The username used to log into Microsoft Stream (enabling this will fill in the email field for you)',
|
describe: 'The username used to log into Microsoft Stream (enabling this will fill in the email field for you).',
|
||||||
demandOption: false
|
demandOption: false
|
||||||
},
|
},
|
||||||
videoUrls: {
|
videoUrls: {
|
||||||
alias: 'i',
|
alias: 'i',
|
||||||
describe: 'List of video urls',
|
describe: 'List of urls to videos or Microsoft Stream groups.',
|
||||||
type: 'array',
|
type: 'array',
|
||||||
demandOption: false
|
demandOption: false
|
||||||
},
|
},
|
||||||
@@ -30,7 +30,7 @@ export const argv: any = yargs.options({
|
|||||||
},
|
},
|
||||||
outputDirectory: {
|
outputDirectory: {
|
||||||
alias: 'o',
|
alias: 'o',
|
||||||
describe: 'The directory where destreamer will save your downloads',
|
describe: 'The directory where destreamer will save your downloads.',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'videos',
|
default: 'videos',
|
||||||
demandOption: false
|
demandOption: false
|
||||||
@@ -44,42 +44,43 @@ export const argv: any = yargs.options({
|
|||||||
},
|
},
|
||||||
keepLoginCookies: {
|
keepLoginCookies: {
|
||||||
alias: 'k',
|
alias: 'k',
|
||||||
describe: 'Let Chromium cache identity provider cookies so you can use "Remember me" during login',
|
describe: 'Let Chromium cache identity provider cookies so you can use "Remember me" during login.\n' +
|
||||||
|
'Must be used every subsequent time you launch Destreamer if you want to log in automatically.',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
demandOption: false
|
demandOption: false
|
||||||
},
|
},
|
||||||
noExperiments: {
|
noExperiments: {
|
||||||
alias: 'x',
|
alias: 'x',
|
||||||
describe: 'Do not attempt to render video thumbnails in the console',
|
describe: 'Do not attempt to render video thumbnails in the console.',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
demandOption: false
|
demandOption: false
|
||||||
},
|
},
|
||||||
simulate: {
|
simulate: {
|
||||||
alias: 's',
|
alias: 's',
|
||||||
describe: 'Disable video download and print metadata information to the console',
|
describe: 'Disable video download and print metadata information to the console.',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
demandOption: false
|
demandOption: false
|
||||||
},
|
},
|
||||||
verbose: {
|
verbose: {
|
||||||
alias: 'v',
|
alias: 'v',
|
||||||
describe: 'Print additional information to the console (use this before opening an issue on GitHub)',
|
describe: 'Print additional information to the console (use this before opening an issue on GitHub).',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
demandOption: false
|
demandOption: false
|
||||||
},
|
},
|
||||||
closedCaptions: {
|
closedCaptions: {
|
||||||
alias: 'cc',
|
alias: 'cc',
|
||||||
describe: 'Check if closed captions are available and let the user choose which one to download (will not ask if only one available)',
|
describe: 'Check if closed captions are available and let the user choose which one to download (will not ask if only one available).',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
demandOption: false
|
demandOption: false
|
||||||
},
|
},
|
||||||
noCleanup: {
|
noCleanup: {
|
||||||
alias: 'nc',
|
alias: 'nc',
|
||||||
describe: 'Do not delete the downloaded video file when an FFmpeg error occurs',
|
describe: 'Do not delete the downloaded video file when an FFmpeg error occurs.',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
demandOption: false
|
demandOption: false
|
||||||
@@ -97,13 +98,13 @@ export const argv: any = yargs.options({
|
|||||||
demandOption: false
|
demandOption: false
|
||||||
},
|
},
|
||||||
format: {
|
format: {
|
||||||
describe: 'Output container format (mkv, mp4, mov, anything that FFmpeg supports)',
|
describe: 'Output container format (mkv, mp4, mov, anything that FFmpeg supports).',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'mkv',
|
default: 'mkv',
|
||||||
demandOption: false
|
demandOption: false
|
||||||
},
|
},
|
||||||
skip: {
|
skip: {
|
||||||
describe: 'Skip download if file already exists',
|
describe: 'Skip download if file already exists.',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
default: false,
|
default: false,
|
||||||
demandOption: false
|
demandOption: false
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import cliProgress from 'cli-progress';
|
|||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import isElevated from 'is-elevated';
|
import isElevated from 'is-elevated';
|
||||||
import puppeteer from 'puppeteer';
|
import puppeteer from 'puppeteer';
|
||||||
|
import { ApiClient } from './ApiClient';
|
||||||
|
|
||||||
|
|
||||||
const { FFmpegCommand, FFmpegInput, FFmpegOutput } = require('@tedconf/fessonia')();
|
const { FFmpegCommand, FFmpegInput, FFmpegOutput } = require('@tedconf/fessonia')();
|
||||||
@@ -151,6 +152,7 @@ async function downloadVideo(videoGUIDs: Array<string>, outputDirectories: Array
|
|||||||
if (argv.keepLoginCookies && index !== 0) {
|
if (argv.keepLoginCookies && index !== 0) {
|
||||||
logger.info('Trying to refresh token...');
|
logger.info('Trying to refresh token...');
|
||||||
session = await refreshSession('https://web.microsoftstream.com/video/' + videoGUIDs[index]);
|
session = await refreshSession('https://web.microsoftstream.com/video/' + videoGUIDs[index]);
|
||||||
|
ApiClient.getInstance().setSession(session);
|
||||||
}
|
}
|
||||||
|
|
||||||
const pbar: cliProgress.SingleBar = new cliProgress.SingleBar({
|
const pbar: cliProgress.SingleBar = new cliProgress.SingleBar({
|
||||||
|
|||||||
Reference in New Issue
Block a user