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
// | |
// MScreenRecorder.swift | |
// MoviesApp | |
// | |
// Created by Ahmed Ali on 19/09/2024. | |
// | |
import ReplayKit | |
enum MScreenRecorderError: Error { |
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
// | |
// Util.swift | |
// | |
// | |
// Created by Ahmed Ali on 22/08/2023. | |
// | |
import Foundation | |
/* |
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
var command; | |
const fs = require('fs'); | |
function some(){ | |
const ffmpegInstaller = require('@ffmpeg-installer/ffmpeg'); | |
var ffmpeg = require('fluent-ffmpeg'); | |
ffmpeg.setFfmpegPath(ffmpegInstaller.path); | |
command = ffmpeg(); | |
createVideo(command); |
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
var nodemailer = require('nodemailer'); | |
const uuid = require('uuid'); | |
var transporter = nodemailer.createTransport({ | |
service : 'gmail', | |
auth : { | |
user : '', | |
pass : '' | |
} | |
}); |