#!/bin/sh
#] 
#] *********************
#] $ bash "$d_bin"'videoL play.sh' 
# www.BillHowell.ca  28Oct2023 initial 
# view in text editor, using constant-width font (eg courier), tabWidth = 3


#24************************24




#24************************24
# List of operators, generated with :
# $ grep  "^#]"  "$d_bin"'videoL play.sh' |  sed "s/^#\]/  /" 

#




#08********08
# Setup 

source  "$d_bin""standard header.sh"



#08********08
# code 

#] vid_simple() play videos in sequence, don't have to be same encoding! very smooth transitions 
# 28Oct2023 vlc (don't use cvlc!!)

	vid_simple()
{
	# : 
	# example :   
	d_FECC="$d_PROJECTS"'9_My sports & clubs/FECC fusion/231024 FECC webinar/'
	vlc  "$d_FECC"'Marvel Fusion, ODIN direct drive nano-accelerator, pB fuel D-T 231024 v1.MTS'  "$d_FECC"'Marvel Fusion, ODIN direct drive nano-accelerator, pB fuel D-T 231024 v2.MTS'
}  


#] videoL_play(pVidL) play video paths listed in pVidL.  Close window to goto next
#]    clear break between vids

	videoL_play()
{
	pVidL="$1"
	while IFS='' read -u 9 pVid; do
		vlc  "$pVid"  
	done 9<"$pVidL" 
}




#08********08
# run - select one of options


	videoL_play  "$d_PROJECTS"'9_My sports & clubs/FECC fusion/231024 FECC webinar/5_videoL FECC fusion webinar.txt'




# $ bash  "$d_bin"'videoL play.sh'  

# enddoc
