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
################################################################################ | |
# sox cheat sheet | |
################################################################################ | |
# Example commands for the sox command-line audio processing tool, | |
# for manipulating or batch processing audio files. | |
################################################################################ | |
# Daniel Jones <[email protected]> | |
################################################################################ | |
################################################################################ |
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
{ | |
"basics": { | |
"name": "Oliver Montalván Morales", | |
"label": "Senior Full-Stack Web Developer", | |
"image": "https://docs.google.com/uc?export=download&id=1_PczCiM6oV0BDjg9U077_nd00LkwsGFU", | |
"email": "[email protected]", | |
"phone": "+50585540554", | |
"url": "https://registry.jsonresume.org/olivermontalvanm?theme=kendall", | |
"summary": "I am a Full-Stack developer with specialized experience in the MERN stack (MongoDB, Express.js, React.js, Node.js), as well as TypeScript, C#, Java EE, PHP 8 (OOP), SQL databases (MSSQL, MySQL, PostgreSQL, SQLite). With strong skills in both client-side and server-side development, I have led projects from conception to implementation and maintenance, ensuring efficiency and functionality.", | |
"location": { |
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
ffmpeg -i {video_input} -vcodec libx265 -crf 28 {video_output} | |
ffmpeg -i input.avi -c:v libx264 -crf 18 -preset veryslow -c:a copy out.mp4 |