diff --git a/.aliases b/.aliases index 6625ef1..0363b46 100644 --- a/.aliases +++ b/.aliases @@ -110,8 +110,12 @@ remove_windows_file() { fi } -open_explorer_here() { - local path_expanded=$(expand_path "$1") +open_explorer() { + local target="$1" + if [[ $target == "" ]]; then + target="$PWD" + fi + local path_expanded=$(expand_path "$target") if [[ -d $path_expanded ]]; then local path=$(unix_to_windows_path "$path_expanded") explorer.exe "$path" @@ -259,7 +263,7 @@ dos2unix_all() { } alias d2u='dos2unix_all' -alias e='open_explorer_here "$PWD"' +alias e='open_explorer' alias exp='echo "Use e instead."' alias f='fg' alias hist='history' @@ -352,7 +356,7 @@ make_vid_dir_and_cd_into() { dir_name=$(remove_extra_spaces "$dir_name") - printf "${BOLD}Creating directory ${YELLOW}'$dir_name'${NORMAL}\n" + printf "${BOLD}Creating directory ${YELLOW}\"$dir_name\"${NORMAL}\n" mkdir "$dir_name" 2>/dev/null cd "$dir_name" @@ -999,9 +1003,12 @@ download_mp4() { mv $temp_name "$filename.mp4" } -# Download from m3u8 stream to mp4. -# You can supply a local file or a URL to the m3u8 file. If the request requires cookies then the easiest way to do it is to -# run the ffmpeg command yourself using this as the example format: +# Download a stream to mp4. Can be from an m3u8 file, an mpd, etc. Whatever the +# supported extensions are from ffmpeg. +# +# You can supply a local file or a URL to the stream file. If the request +# requires cookies then the easiest way to do it is to run the ffmpeg command +# yourself using this as the example format: # # ffmpeg -protocol_whitelist file,https,crypto,tls,tcp -headers $'Cookie: CloudFront-Policy=ayJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly92aWRlby5zdGVsbGFydGlja2V0cy5jb20vb3JnYW5pemF0aW9ucy8yYWQ0YTBhYi1iZWM3LTQ4NjMtYTBmMS0zNjI0N2NjODNkMjMvdHJhbnNjb2RlZC85MWFmYjI4MS0wNy0yMC0yM19LcmF6YW1fUHJlc2VudHMqIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjkwNDk4ODAwfSwiSXBBZGRyZXNzIjp7IkFXUzpTb3VyY2VJcCI6IjY0LjEzNy4xNDkuMTkzLzMyIn19LCJTdHJlYW1Ub2tlbklkIjoiOTJlMTg2ZjUtZWZiMS00ZDAzLWE0NGQtZTg3YzQ3NzFiODI2IiwiU3RyZWFtVG9rZW5WaWV3ZXJJZCI6Ijg3NzFlMTBhLTcxNjUtNDcxOS1iMjFiLTkwNjljZDgzNzdhYyIsIlN0cmVhbVRva2VuVmlld2VyVHlwZSI6IkN1c3RvbWVyIiwiU3RyZWFtVG9rZW5SZXNvdXJjZUlkIjoiZDY3Mzc4NWMtNDEzNy00MDRhLTkzZjctNjQxN2Q4MmY2NmUxIiwiU3RyZWFtVG9rZW5SZXNvdXJjZVR5cGUiOiJWaWRlb09uRGVtYW5kIn1dfQ__; CloudFront-Signature=H0RwSHRX9y4PIqbAmxtEoGEPbO5da%7EW764sbHBXcPwnSSuq5PcjPM2UuP1YKL%7E92WcRTEiJ9FMDVbxNtPDZea2lCk9txvpHdmn7BBy6JNwKd-%7ED9RKq3SSqB00O8P1VkztKtkALYgn8lq3ihk7Nss0wYE9WxgvNNU30umcP-wSHFtuiGsbArivbWvu639Ku5bkfwm8azXI9hvz5D7OtwSyo3z%7E8trw3rALDwCgHZiqQrEQtfN4NYAWZ%7EuzdcGRgdUVmMQotBHG0WpPDItqBR9RLVel%7EWB0mQOO3Dax9DnGHlBaBs5mdR28NqOj8XCY4pAhguJQlERcANIK2WXm56dA__; CloudFront-Key-Pair-Id=APK3IWIJLRLBNXI2PR4Q\r\n' -i https://video.stellartickets.com/organizations/2ad4a0ac-bec7-4863-a0f1-36247cc83d23/transcoded/91afb281-07-20-23_Krazam_Presents_index_1080p_20230721T024151_1.m3u8 -acodec copy -vcodec copy krazam.mp4 # @@ -1012,17 +1019,17 @@ download_mp4() { # # If you need to debug the http request then add "-v trace" to the command above. # -download_mp4_from_m3u8() { - local m3u8_path="$1" +download_mp4_from_stream() { + local stream_path="$1" local filename="$2" - if [[ $m3u8_path == "" || $filename == "" ]]; then - error "Usage: " + if [[ $stream_path == "" || $filename == "" ]]; then + error "Usage: " return fi printf "${BOLD}Downloading: ${YELLOW}$filename${NORMAL}\n" - ffmpeg.exe -protocol_whitelist file,data,https,crypto,tls,tcp -allowed_extensions ALL -i $m3u8_path -acodec copy -vcodec copy "${filename}.mp4" + ffmpeg.exe -protocol_whitelist file,data,https,crypto,tls,tcp -allowed_extensions ALL -i $stream_path -acodec copy -vcodec copy "${filename}.mp4" if [[ $? -ne 0 ]]; then error "Error: failed to download." @@ -1033,17 +1040,17 @@ download_mp4_from_m3u8() { } # Same notes from above regarding cookies/headers. -download_aac_from_m3u8() { - local m3u8_path="$1" +download_aac_from_stream() { + local stream_path="$1" local filename="$2" - if [[ $m3u8_path == "" || $filename == "" ]]; then - error "Usage: " + if [[ $stream_path == "" || $filename == "" ]]; then + error "Usage: " return fi printf "${BOLD}Downloading: ${YELLOW}$filename${NORMAL}\n" - ffmpeg.exe -protocol_whitelist file,https,crypto,tls,tcp -i $m3u8_path -acodec copy "${filename}.aac" + ffmpeg.exe -protocol_whitelist file,https,crypto,tls,tcp -i $stream_path -acodec copy "${filename}.aac" if [[ $? -ne 0 ]]; then error "Error: failed to download." @@ -1185,8 +1192,10 @@ alias twitter='download_twitter_vid "" ' # Misc #------------------------------------------------- alias download-mp4='download_mp4' -alias download-from-m3u8='download_mp4_from_m3u8' -alias download-audio-from-m3u8='download_aac_from_m3u8' +alias download-from-stream='download_mp4_from_stream' +alias download-from-m3u8='echo Use download-from-stream instead.' +alias download-audio-from-stream='download_aac_from_stream' +alias download-audio-from-m3u8='echo Use download-audio-from-stream instead.' #################################################################################################### # Video Compression diff --git a/.vimrc b/.vimrc index ba6b970..55ccfde 100644 --- a/.vimrc +++ b/.vimrc @@ -303,7 +303,7 @@ set switchbuf=useopen,split set numberwidth=5 set showtabline=2 set winwidth=79 -set linebreak " Break wrapped text at word boundaries +"set linebreak " Break wrapped text at word boundaries " Use abbreviations. set shortmess=a @@ -893,7 +893,6 @@ let g:rg_window_height = g:quickfix_pane_height " ctrl-y = create file and open it. " ctrl-z = mark multiple file search results to open (I think you can only use ctrl-v or ctrl-x and not enter). " ctrl-o = ask how to open a file search result. -" ctrl-o = ask how to open a file search result. " ctrl-p | ctrl-n = traverse search history. " CtrlP finds the tags file by using vim's 'tags' option value. I initially @@ -947,6 +946,7 @@ let g:ctrlp_switch_buffer = 'et' " If a file is already open, open it again in a let g:ctrlp_custom_ignore = '\v[\/]\.(git|hg|svn)$' let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard'] " If a git repo, use checked in files (ignore things in .gitignore); fallback to globpath() let g:ctrlp_match_func = { 'match': 'pymatcher#PyMatch' } +let g:ctrlp_split_window = 0 " Replace current buffer. "################################################################################## " GIT @@ -1535,11 +1535,14 @@ nnoremap :cp "################################################################################## " Search using ripgrep (first install with Rust: cargo install ripgrep). -fu! Search(path, search_args, case_insensitive=0) +fu! Search(path, search_args, case_insensitive=0, token="") let l:helper = "Search '" . a:path . "' (" . (len(a:search_args) > 0 ? a:search_args . " | " : '') . (a:case_insensitive ? "INSENSITIVE" : "SENSITIVE") . "): " - let l:term = input(l:helper) + let l:term = a:token if empty(l:term) - return + let l:term = input(l:helper) + if empty(l:term) + return + endif endif " @note --pretty (i.e. colors) is not enabled in vim-ripgrep because the @@ -1578,37 +1581,48 @@ fu! SearchExt(path, search_args, case_insensitive=0) call Search(a:path, l:args, a:case_insensitive) endfu +fu! SearchCursor(path, search_args, case_insensitive=0) + let l:term = expand('') + call Search(a:path, a:search_args, a:case_insensitive, l:term) +endfu + + "///////////////////////////////////////////////// " SEARCH IN CURRENT WORKING DIRECTORY "///////////////////////////////////////////////// " Case insensitive: -nnoremap s :call Search( '.', g:campo_custom_search_args, 1) -nnoremap sd :call SearchExt('.', g:campo_custom_search_args, 1) +nnoremap s :call Search(getcwd(), g:campo_custom_search_args, 1) +nnoremap sd :call SearchExt(getcwd(), g:campo_custom_search_args, 1) +nnoremap se :call SearchCursor(getcwd(), g:campo_custom_search_args, 1) " Case sensitive: -nnoremap ss :call Search( '.', g:campo_custom_search_args, 0) -nnoremap ssd :call SearchExt('.', g:campo_custom_search_args, 0) +nnoremap ss :call Search(getcwd(), g:campo_custom_search_args, 0) +nnoremap ssd :call SearchExt(getcwd(), g:campo_custom_search_args, 0) +nnoremap sse :call SearchCursor(getcwd(), g:campo_custom_search_args, 0) + "///////////////////////////////////////////////// " SEARCH IN DIRECTORY CONTAINING THE ACTIVE FILE "///////////////////////////////////////////////// -" Case insensitive: -nnoremap sf :call Search( expand('%:p:h'), g:campo_custom_search_args, 1) -nnoremap sdf :call SearchExt(expand('%:p:h'), g:campo_custom_search_args, 1) +" Case insensitive +nnoremap sf :call Search(expand('%:p:h'), g:campo_custom_search_args, 1) +nnoremap sdf :call SearchExt(expand('%:p:h'), g:campo_custom_search_args, 1) +nnoremap sef :call SearchCursor(expand('%:p:h'), g:campo_custom_search_args, 1) " Case sensitive: -nnoremap ssf :call Search( expand('%:p:h'), g:campo_custom_search_args, 0) +nnoremap ssf :call Search(expand('%:p:h'), g:campo_custom_search_args, 0) nnoremap ssdf :call SearchExt(expand('%:p:h'), g:campo_custom_search_args, 0) +nnoremap ssef :call SearchCursor(expand('%:p:h'), g:campo_custom_search_args, 0) "///////////////////////////////////////////////// " SEARCH IN ALL PROJECTS "///////////////////////////////////////////////// " Case insensitive: -nnoremap sp :call Search( g:campo_projects_path, g:campo_custom_search_args, 1) -nnoremap sdp :call SearchExt(g:campo_projects_path, g:campo_custom_search_args, 1) +nnoremap sp :call Search(g:campo_projects_path, g:campo_custom_search_args, 1) +nnoremap sdp :call SearchExt(g:campo_projects_path, g:campo_custom_search_args, 1) " Case sensitive: -nnoremap ssp :call Search( g:campo_projects_path, g:campo_custom_search_args, 0) +nnoremap ssp :call Search(g:campo_projects_path, g:campo_custom_search_args, 0) nnoremap ssdp :call SearchExt(g:campo_projects_path, g:campo_custom_search_args, 0) "///////////////////////////////////////////////// @@ -1618,32 +1632,40 @@ nnoremap ssdp :call SearchExt(g:campo_projects_path, g:campo_custom_sear " Case insensitive: " " ROOT -nnoremap sg :call Search( g:campo_jai_path, g:campo_custom_search_args, 1) -nnoremap sdg :call SearchExt(g:campo_jai_path, g:campo_custom_search_args, 1) +nnoremap sg :call Search(g:campo_jai_path, g:campo_custom_search_args, 1) +nnoremap sdg :call SearchExt(g:campo_jai_path, g:campo_custom_search_args, 1) +nnoremap seg :call SearchCursor(g:campo_jai_path, g:campo_custom_search_args, 1) " MODULES -nnoremap sm :call Search( g:campo_jai_path.'/modules', g:campo_custom_search_args, 1) -nnoremap sdm :call SearchExt(g:campo_jai_path.'/modules', g:campo_custom_search_args, 1) +nnoremap sm :call Search(g:campo_jai_path.'/modules', g:campo_custom_search_args, 1) +nnoremap sdm :call SearchExt(g:campo_jai_path.'/modules', g:campo_custom_search_args, 1) +nnoremap sem :call SearchCursor(g:campo_jai_path.'/modules', g:campo_custom_search_args, 1) " HOW TO -nnoremap sh :call Search( g:campo_jai_path.'/how_to', g:campo_custom_search_args, 1) -nnoremap sdh :call SearchExt(g:campo_jai_path.'/how_to', g:campo_custom_search_args, 1) +nnoremap sh :call Search(g:campo_jai_path.'/how_to', g:campo_custom_search_args, 1) +nnoremap sdh :call SearchExt(g:campo_jai_path.'/how_to', g:campo_custom_search_args, 1) " EXAMPLES -nnoremap se :call Search( g:campo_jai_path.'/examples', g:campo_custom_search_args, 1) -nnoremap sde :call SearchExt(g:campo_jai_path.'/examples', g:campo_custom_search_args, 1) +" Using the 'e' for cursor search. +"nnoremap se :call Search(g:campo_jai_path.'/examples', g:campo_custom_search_args, 1) +"nnoremap sde :call SearchExt(g:campo_jai_path.'/examples', g:campo_custom_search_args, 1) +"nnoremap sae :call SearchCursor(g:campo_jai_path.'/examples', g:campo_custom_search_args, 1) " Case sensitive: " " ROOT -nnoremap ssg :call Search( g:campo_jai_path, g:campo_custom_search_args, 0) -nnoremap ssdg :call SearchExt(g:campo_jai_path, g:campo_custom_search_args, 0) +nnoremap ssg :call Search(g:campo_jai_path, g:campo_custom_search_args, 0) +nnoremap ssdg :call SearchExt(g:campo_jai_path, g:campo_custom_search_args, 0) +nnoremap sseg :call SearchCursor(g:campo_jai_path, g:campo_custom_search_args, 0) " MODULES -nnoremap ssm :call Search( g:campo_jai_path.'/modules', g:campo_custom_search_args, 0) -nnoremap ssdm :call SearchExt(g:campo_jai_path.'/modules', g:campo_custom_search_args, 0) +nnoremap ssm :call Search(g:campo_jai_path.'/modules', g:campo_custom_search_args, 0) +nnoremap ssdm :call SearchExt(g:campo_jai_path.'/modules', g:campo_custom_search_args, 0) +nnoremap ssem :call SearchCursor(g:campo_jai_path.'/modules', g:campo_custom_search_args, 0) " HOW TO -nnoremap ssh :call Search( g:campo_jai_path.'/how_to', g:campo_custom_search_args, 0) -nnoremap ssdh :call SearchExt(g:campo_jai_path.'/how_to', g:campo_custom_search_args, 0) +nnoremap ssh :call Search(g:campo_jai_path.'/how_to', g:campo_custom_search_args, 0) +nnoremap ssdh :call SearchExt(g:campo_jai_path.'/how_to', g:campo_custom_search_args, 0) " EXAMPLES -nnoremap sse :call Search( g:campo_jai_path.'/examples', g:campo_custom_search_args, 0) -nnoremap ssde :call SearchExt(g:campo_jai_path.'/examples', g:campo_custom_search_args, 0) +" Using the 'e' for cursor search. +"nnoremap sse :call Search(g:campo_jai_path.'/examples', g:campo_custom_search_args, 0) +"nnoremap ssde :call SearchExt(g:campo_jai_path.'/examples', g:campo_custom_search_args, 0) +"nnoremap ssae :call SearchCursor(g:campo_jai_path.'/examples', g:campo_custom_search_args, 0) " Navigation for the vim-ripgrep search results. " Hit o on a result line to open the file at that line. @@ -1763,6 +1785,34 @@ nnoremap cc :call CenterPane() nnoremap cd :call RemoveCenterPane() +"################################################################################## +" EDIT TODO PLAN & SMALL WINDOW +"################################################################################## + +fu! EditTodoPlan() + execute 'vsplit todo.plan' + exec 'vertical resize' string(&columns * 0.25) +endfu +fu! EditTodoPlanH() + execute 'split todo.plan' + exec 'horizontal resize' string(&lines * 0.25) +endfu + +fu! MakeSmall() + exec 'vertical resize' string(&columns * 0.25) +endfu + +fu! SmallWindow() + execute 'vsplit' + exec 'vertical resize' string(&columns * 0.25) +endfu + +nnoremap t :call EditTodoPlan() +nnoremap th :call EditTodoPlanH() +nnoremap tt :call MakeSmall() +nnoremap ts :call SmallWindow() + + "################################################################################## " SIMPLE VIEW "################################################################################## diff --git a/dotfiles/bin/analyze-volume b/dotfiles/bin/analyze-volume index 74b8656..11a1dcf 100644 --- a/dotfiles/bin/analyze-volume +++ b/dotfiles/bin/analyze-volume @@ -5,7 +5,7 @@ # change-volume script, supplying it the volume delta you want. Typically you # use the delta from the analysis report this script provides, e.g. if the # max_volume is -5 db then you would call change-volume with a value of 5. I -# find that the two pass normalize-audio script works better than this +# find that the two pass normalize-volume script works better than this # approach...but it will take longer to run! # # Inspired by https://superuser.com/a/323127 and https://superuser.com/a/1312885 diff --git a/dotfiles/bin/normalize-volume b/dotfiles/bin/normalize-volume index 339bc96..c61b6ce 100644 --- a/dotfiles/bin/normalize-volume +++ b/dotfiles/bin/normalize-volume @@ -1,7 +1,10 @@ #!/usr/bin/env bash -# Use this to normalize the volume of a video or audio file using the average loudness, or RMS-based normalization. It does a pretty good job! -# If you want to modify the volume manually then checkout the analyze-volume and change-volume scripts. +# Use this to normalize the volume of a video or audio file using the average +# loudness, or RMS-based normalization. It does a pretty good job! +# +# If you want to modify the volume manually then checkout the analyze-volume +# and change-volume scripts. # # This does not re-encode video when given a video file. #