Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- webmin
- tm-ac1900
- Stretch
- nginx
- Nas
- omv5
- h6000ii
- AC68U
- traefik2
- macvlan
- webdav
- 골프 스윙
- SAMBA
- iomega
- EBS
- 커널 5.13.8
- openmediavault
- uboot
- debian9
- 모하비
- BCM94352Z
- ebs 녹음
- pihole
- wrt54g
- 마클미러
- 바디스윙
- parallel to usb
- omv
- 나인봇 미니 충전
- proftpd
Archives
- Today
- Total
해피 투게더
mac mini 에서 ebs 녹음 본문
터미널에서 rtmpdump, ffmpeg 설치
brew install rtmpdump ffmpeg
테스트
/Volumes/hd2/EBS/ebs_record.sh test 1 /Volumes/hd2/EBS
crontab -e
CRON_TZ=Asia/Seoul
0 5 * * 1-6 /Volumes/hd2/EBS/ebs_record.sh Pocket-CH 10 /Volumes/hd2/EBS/1Pocket-CH
30 5 * * 4-6 /Volumes/hd2/EBS/ebs_record.sh Basic-CH 20 /Volumes/hd2/EBS/EBS/2Basic-CH
20 6 * * 1-6 /Volumes/hd2/EBS/ebs_record.sh Easywriting 20 /Volumes/hd2/EBS/3Easywriting
0 7 * * 1-6 /Volumes/hd2/EBS/ebs_record.sh SpeakEng 20 /Volumes/hd2/EBS/4SpeakEng
40 7 * * 1-6 /Volumes/hd2/EBS/ebs_record.sh PowerEng 20 /Volumes/hd2/EBS/5PowerEng
:wq 로 저장
테스트시에는 잘 되는듯 하지만 권한문제인지 실행이 안된건지 저장 안됨. 스크립트 위치 변경.
cp /Volumes/hd2/EBS/ebs_record.sh ~/duckdns/
*/5 * * * * ~/duckdns/duck.sh >/dev/null 2>&1
CRON_TZ=Asia/Seoul
0 5 * * 1-6 ~/duckdns/ebs_record.sh Pocket-CH 10 /Volumes/hd2/EBS/1Pocket-CH
30 5 * * 4-6 ~/duckdns/ebs_record.sh Basic-CH 20 /Volumes/hd2/EBS/EBS/2Basic-CH
20 6 * * 1-6 ~/duckdns/ebs_record.sh Easywriting 20 /Volumes/hd2/EBS/3Easywriting
0 7 * * 1-6 ~/duckdns/ebs_record.sh SpeakEng 20 /Volumes/hd2/EBS/4SpeakEng
40 7 * * 1-6 ~/duckdns/ebs_record.sh PowerEng 20 /Volumes/hd2/EBS/5PowerEng
duck.sh 는 ddns 설정. 그래도 안됨.
cron runs scripts with a very minimal environment. In particular, its PATH doesn't contain all of the usual binaries directories, just /usr/bin and /bin, so any commands in other binaries directories (like wget) will not be available.
그래서 Path 설정을 crontab 에 추가해줌
PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/homebrew/bin
*/5 * * * * ~/duckdns/duck.sh >/dev/null 2>&1
CRON_TZ=Asia/Seoul
0 5 * * 1-6 ~/duckdns/ebs_record.sh Pocket-CH 10 /Volumes/hd2/EBS/1Pocket-CH
30 5 * * 4-6 ~/duckdns/ebs_record.sh Basic-CH 20 /Volumes/hd2/EBS/EBS/2Basic-CH
20 6 * * 1-6 ~/duckdns/ebs_record.sh Easywriting 20 /Volumes/hd2/EBS/3Easywriting
0 7 * * 1-6 ~/duckdns/ebs_record.sh SpeakEng 20 /Volumes/hd2/EBS/4SpeakEng
40 7 * * 1-6 ~/duckdns/ebs_record.sh PowerEng 20 /Volumes/hd2/EBS/5PowerEng
녹음이 되긴 하는데 시간대가 맞지않음. 옵션을 TZ=Asia/Seoul 로 해도 같은 결과
그냥 시간대를 조정해서 쓰기로... daylightsaving 끝나면 또 조정해야 겠지만