Skip to content

Instantly share code, notes, and snippets.

View krasi-georgiev's full-sized avatar

Krasimir Georgiev krasi-georgiev

View GitHub Profile
@krasi-georgiev
krasi-georgiev / cut_segments.sh
Last active April 13, 2025 05:50
Cut a video file from frame.io comments.
#!/bin/bash
# Run with:
# bash <(curl -sL "https://gist.githubusercontent.com/krasi-georgiev/1f167a2136bbce5824c6516d2777ef79/raw/cut_segments.sh")
shopt -s nullglob
### STEP 1: Select CSV file
csv_files=( *.csv )
if [ ${#csv_files[@]} -eq 0 ]; then
@krasi-georgiev
krasi-georgiev / convert.sh
Last active April 18, 2025 14:14
convert and merge files
#!/bin/bash
# ================================================ echo "1) Convert videos (default)"
#
# Run directly from this gist:
#
# bash <(curl -sL https://gist.githubusercontent.com/krasi-georgiev/5f891acb246a36d475f0c5c451e658e9/raw/convert.sh)
#
# ================================================