redditube
v1.1.5
Um gerador de vídeo da Reddit posts e comentários.
Assista a este vídeo feito com Redditube.
npm install redditube
Tem erros de instalação? Instale os pacotes a seguir e tente novamente.
sudo apt install build-essential libpixman-1-dev libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
Você precisará instalar o FFMPEG em sua máquina.
Você também precisará de credenciais do Reddit.
Precisamos do ID do cliente (string aleatória sob o nome do aplicativo) e o segredo do cliente posteriormente.
const Redditube = require ( "redditube" ) ;
// Configure access to Reddit
Redditube . config ( {
"userAgent" : "Redditube" ,
"clientId" : "" , // Your Client ID
"clientSecret" : "" , // Your Client secret
"username" : "" , // Your Reddit username
"password" : "" // Your Reddit password
} ) ;
// Log start, status, errors and end events (optional)
Redditube . on ( "start" , ( ) => console . log ( "Start event!" ) ) ;
Redditube . on ( "status" , status => console . log ( status ) ) ;
Redditube . on ( "error" , error => console . error ( error ) ) ;
Redditube . on ( "end" , ( ) => console . log ( "End event!" ) ) ;
// Option 1
// Use .then() and .catch()
Redditube . make ( "f9cufu" , 3 ) . then ( videoPath => {
console . log ( videoPath ) ;
} ) . catch ( error => {
console . log ( error ) ;
} ) ;
// Option 2
// Await a promise (inside an asynchronous function)
const videoPath = await Redditube . make ( "f9cufu" , 3 ) ;O exemplo acima faz um vídeo deste post (consulte F9Cufu no URL) e com 3 comentários.
Sinta -se à vontade para estrelar o repositório, criar problemas e fazer solicitações de puxar no Github.
Liberado sob a licença do MIT.