Advertisement
metalx1000

media player logger

Apr 16th, 2021
1,636
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.35 KB | None | 0 0
  1. #!/bin/bash
  2. ######################################################################
  3. #Copyright (C) 2020  Kris Occhipinti
  4. #https://filmsbykris.com
  5.  
  6. #This program is free software: you can redistribute it and/or modify
  7. #it under the terms of the GNU General Public License as published by
  8. #the Free Software Foundation, either version 3 of the License, or
  9. #(at your option) any later version.
  10.  
  11. #This program is distributed in the hope that it will be useful,
  12. #but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. #GNU General Public License for more details.
  15.  
  16. #You should have received a copy of the GNU General Public License
  17. #along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18. ######################################################################
  19. watched="$HOME/.fbk/watched.lst"
  20. touch "$watched"
  21. tail "$watched"
  22.  
  23. function main(){
  24.   find . -iregex '.*\.\(mkv\|mp4\|avi\|mov\)$'|\
  25.     sed 's!.*/!!'|\
  26.     sort|\
  27.     fzf-tmux --prompt "Select a Media File: " -m|while read file
  28.     do
  29.       basename "$file" >> "$watched"
  30.       #user fgreps for special chars
  31.       video=$(find|fgrep "$file"|head -n1)
  32.       echo "---$file---"
  33.       echo "---$video---"
  34.       echo ": $(date +%s):0;mpv \"$video\"" >> $HOME/.zsh_history
  35.       mpv "$video"
  36.     done
  37.   }
  38.  
  39. main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement