Fast Fury and Fantastic .... The ffmpeg

ffmpeg Recipes A list of useful receipes when using ffmpeg. A dump for future references. Extract frames from video: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #!/bin/zsh # Find all .mp4 files in the current directory and store them in an array input_files=(*.mp4) # Loop through each input file for input_file in "${input_files[@]}" do # Get the path to the input file directory input_dir="$(dirname "$input_file")" # Create a folder for the input file images in the same directory as the input file folder_name="${input_file%....

March 6, 2023 · 1 min · shekhar

Oh my OMSCS

Yeah, I joined OMSCS But wait, Now what ?

April 14, 2022 · 1 min · shekhar

AWS Lambda function for Data Scientist using Python.

Introduction The post is a quick guide on “How we could use AWS lambda services to deploy some standalone task”. This is really helpful when we dont have to buy instances for such task. By using word task, I mean scripts, that could scrap data, or a cron job data aggregator. The BEST thing about the cron job is that , it is way cheaper. A million hits by lambda function is Free in AWS. ...

June 11, 2020 · 6 min · shekhar

Create your own Blog Post

Introduction I want to create a Blog. But there are some conditions that I want: Easy/simple to create The UI should match my style. Based on Git, for future reference. ...

May 31, 2020 · 6 min · shekhar