This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Simple Python 3 script to convert eml Email files to mbox files. | |
Convert script requires only The Python Standard Libraries. | |
This script is useful to convert eml files exported from | |
E-Mail Accounts to mbox files. Mbox files can be imported | |
in common email clients such as Outlook, Thunderbird, or | |
Gnome Evolution. | |
Placing eml files to be converted to mbox files: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. Open the browser developper console on the network tab | |
// 2. Start the video | |
// 3. In the dev tab, locate the load of the "master.json" file, copy its full URL | |
// 4. Run: node vimeo-downloader.js "<URL>" | |
// 5. Combine the m4v and m4a files with mkvmerge | |
const fs = require('fs'); | |
const url = require('url'); | |
const https = require('https'); |