tarina

git clone https://git.tarina.org/tarina
Log | Files | Refs | README | LICENSE

commit b9744de6011af77018b072189a394d2f01e091d7
parent cb5c6b8ed64bda25a4a99bda48e11a2aace404a2
Author: rob <rob@tarina.org>
Date:   Wed, 29 Jan 2020 15:55:34 +0200

collaboration upload test

Diffstat:
Mdocs/tarina-manual.md | 2++
Amods/collab-edit.sh | 7+++++++
Amods/collab-pull.sh | 7+++++++
Amods/collab-push.sh | 7+++++++
Mmods/upload-mods-enabled | 3+++
5 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/docs/tarina-manual.md b/docs/tarina-manual.md @@ -102,6 +102,8 @@ Disk space, showing you how much of space left on your sd card. Shutdown, when y ### Update and upload Update the camera to the most exclusive version, this is still pretty much a-work-in-progress and as a warnign expect some bugs! don't worry I'll be improving things but it takes time. Upload your film to the web, there is a youtube uploader mod you can install but you'll have to do some configs to make it work for you. Details coming soon. Reach out to the matrix room if you're in a hurry.. +to get the youtube api secrets `wget https://tarina.org/yt/.client_secrets.json` + ### Backup It's good to always backup your stuff! Plug in your usb drive and just press enter and sit back and relax as the wonderful work of computer copying does the magic. While you're at it open a beer cuz it can take quite a while if you got much stuff on there. Now, this should be working on almost all hard drives but there are some that still use a very old file system called fat, and its as lazy as its given name and doesnt store critical information we would want, because we want the copying to only copy our new takes or retakes. So please use new drives like ntfs systems or ext or whatever they all are called. You'll find all your takes even the shitty ones on your harddrive in a directory called /tarinafilms/. One more thing, there are some drives that are very power hungry and doesnt come with it's own power source, now these drives are very bad for this particular use because the Tarina has limited amounts of power for usb use, so to be sure it's gonna work, use powered hard drives that has got a power cord. diff --git a/mods/collab-edit.sh b/mods/collab-edit.sh @@ -0,0 +1,7 @@ +#!/bin/sh +# TARINA COLLABORATION EDIT +# $1 filmtitle +# $2 filename +PATH=`pwd` + +/usr/bin/rsync --rsh='/usr/bin/ssh -p 13337' -avr -P /home/pi/Videos/$1 tarina@tarina.org:/home/tarina/Videos/$1 --delete diff --git a/mods/collab-pull.sh b/mods/collab-pull.sh @@ -0,0 +1,7 @@ +#!/bin/sh +# TARINA COLLABORATION PULL +# $1 filmtitle +# $2 filename +PATH=`pwd` + +/usr/bin/rsync -e '/usr/bin/ssh -p 13337' -avr -P tarina@tarina.org:/home/tarina/Videos/$1 /home/pi/Videos/$1 diff --git a/mods/collab-push.sh b/mods/collab-push.sh @@ -0,0 +1,7 @@ +#!/bin/sh +# TARINA COLLABORATION PUSH +# $1 filmtitle +# $2 filename +PATH=`pwd` + +/usr/bin/rsync -e "/usr/bin/ssh -p 13337" -avr -P /home/pi/Videos/$1 tarina@tarina.org:/home/tarina/Videos diff --git a/mods/upload-mods-enabled b/mods/upload-mods-enabled @@ -1,2 +1,5 @@ youtube-upload tarina-upload +collab-pull +collab-push +collab-edit