mirror of
https://github.com/snobu/destreamer.git
synced 2026-02-27 08:48:23 +00:00
Compare commits
2 Commits
d2a79442df
...
sharepoint
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e93ad80ef6 | ||
|
|
9b8d341e5b |
@@ -41,6 +41,7 @@ Hopefully this doesn't break the end user agreement for Microsoft Stream. Since
|
|||||||
- [**Node.js**][node]: You'll need Node.js version 8.0 or higher. A GitHub Action runs tests on all major Node versions on every commit. One caveat for Node 8, if you get a `Parse Error` with `code: HPE_HEADER_OVERFLOW` you're out of luck and you'll need to upgrade to Node 10+. PLEASE NOTE WE NO LONGER TEST BUILDS AGAINST NODE 8.x. YOU ARE ON YOUR OWN.
|
- [**Node.js**][node]: You'll need Node.js version 8.0 or higher. A GitHub Action runs tests on all major Node versions on every commit. One caveat for Node 8, if you get a `Parse Error` with `code: HPE_HEADER_OVERFLOW` you're out of luck and you'll need to upgrade to Node 10+. PLEASE NOTE WE NO LONGER TEST BUILDS AGAINST NODE 8.x. YOU ARE ON YOUR OWN.
|
||||||
- **npm**: usually comes with Node.js, type `npm` in your terminal to check for its presence
|
- **npm**: usually comes with Node.js, type `npm` in your terminal to check for its presence
|
||||||
- [**ffmpeg**][ffmpeg]: a recent version (year 2019 or above), in `$PATH` or in the same directory as this README file (project root).
|
- [**ffmpeg**][ffmpeg]: a recent version (year 2019 or above), in `$PATH` or in the same directory as this README file (project root).
|
||||||
|
- [**aria2**][aria2]: aria2 is a utility for downloading files with multiple threads, fast.
|
||||||
- [**git**][git]: one or more npm dependencies require git.
|
- [**git**][git]: one or more npm dependencies require git.
|
||||||
|
|
||||||
Destreamer takes a [honeybadger](https://www.youtube.com/watch?v=4r7wHMg5Yjg) approach towards the OS it's running on. We've successfully tested it on Windows, macOS and Linux.
|
Destreamer takes a [honeybadger](https://www.youtube.com/watch?v=4r7wHMg5Yjg) approach towards the OS it's running on. We've successfully tested it on Windows, macOS and Linux.
|
||||||
@@ -239,6 +240,7 @@ Please open an [issue](https://github.com/snobu/destreamer/issues) and we'll loo
|
|||||||
|
|
||||||
|
|
||||||
[ffmpeg]: https://www.ffmpeg.org/download.html
|
[ffmpeg]: https://www.ffmpeg.org/download.html
|
||||||
|
[aria2]: https://github.com/aria2/aria2/releases
|
||||||
[xming]: https://sourceforge.net/projects/xming/
|
[xming]: https://sourceforge.net/projects/xming/
|
||||||
[node]: https://nodejs.org/en/download/
|
[node]: https://nodejs.org/en/download/
|
||||||
[git]: https://git-scm.com/downloads
|
[git]: https://git-scm.com/downloads
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ export class ShareApiClient {
|
|||||||
AddRequiredFields: true
|
AddRequiredFields: true
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const url = `${this.site}/_api/web/GetListUsingPath(DecodedUrl=@a1)/RenderListDataAsStream?@a1='${filePath}'`;
|
const url = `${this.site}/_api/web/GetListUsingPath(DecodedUrl=@a1)/RenderListDataAsStream?@a1='${encodeURIComponent(filePath)}'`;
|
||||||
|
|
||||||
logger.verbose(`Requesting video info for '${url}'`);
|
logger.verbose(`Requesting video info for '${url}'`);
|
||||||
const info = await this.axiosInstance.post(url, payload, {
|
const info = await this.axiosInstance.post(url, payload, {
|
||||||
|
|||||||
@@ -177,7 +177,7 @@ export async function downloadStreamVideo(videoUrls: Array<VideoUrl>): Promise<v
|
|||||||
|
|
||||||
// TODO: complete overhaul of this function
|
// TODO: complete overhaul of this function
|
||||||
export async function downloadShareVideo(videoUrls: Array<VideoUrl>): Promise<void> {
|
export async function downloadShareVideo(videoUrls: Array<VideoUrl>): Promise<void> {
|
||||||
const shareUrlRegex = new RegExp(/(?<domain>https:\/\/.+\.sharepoint\.com).*?(?<baseSite>\/(?:teams|sites)\/.*?)(?:(?<filename>\/.*\.mp4)|\/.*id=(?<paramFilename>.*mp4))/);
|
const shareUrlRegex = new RegExp(/(?<domain>https:\/\/.+\.sharepoint\.com).*?(?<baseSite>\/(?:teams|sites|personal)\/.*?)(?:(?<filename>\/.*\.mp4)|\/.*id=(?<paramFilename>.*mp4))/);
|
||||||
|
|
||||||
logger.info('Downloading SharePoint videos...\n\n');
|
logger.info('Downloading SharePoint videos...\n\n');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user