/usr/bin/rm -rf xfilelist for i in `ls -1 *.mov`; do echo "file $i" >> xfilelist done ffmpeg -safe 0 -f concat -i xfilelist -vcodec copy -acodec copy $1.mov
2022-07-17
Matrox Monarch 5-minute video recordings assembled for Youtube.
This is a short bash scirpt I used to compose 5-minute mov files
into one mpg file to upload to Youtube. We have a Matrox Monarch
that records locally to flash drive, and the 5-minute videos must
be put together later, if we don't stream directly to Youtube.
Subscribe to:
Post Comments (Atom)
Script to see network interface connection speed
cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1 network-speed ...
-
This script with it's two related configuration files worked on Raspberry Pi Raspbian Linux. What was always sketchy was the "dri...
-
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #Warn ; Recommended for catching common errors. Send...
-
cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1 network-speed ...
No comments:
Post a Comment