This file contains hidden or 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
#include <dirent.h> | |
#include <errno.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
int main (int argc, char *argv[]) { | |
if (argc == 1){ | |
printf("Usage: convertl2ogg [DIRECTORY]\n"); | |
} |
This file contains hidden or 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
// ==UserScript== | |
// @name MFacebookVideoDWNLD | |
// @namespace http://tampermonkey.net/ | |
// @version 1.1.1 | |
// @description Remove the attribute in the html video that prevents you from downloading video on m.facebook | |
// @author Lucas Branco | |
// @match https://m.facebook.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |