SIM ... Aqui está alguns scripts UNIX que lerão o último LRV via wifi e o exibirão no seu computador.
#!/bin/sh
### Isolates LRV files from Go Pro Video files
curl -L http://10.5.5.9/videos/DCIM/100GOPRO/ | grep -wo --color -e \G.......\.L.V\< |tr -d \< > LRVfile; sleep 1
### Hold the Name of the most recent Video file and change to .MP4
NAME=$(tail -r -n1 LRVfile | sed s/LRV/MP4/g) ;
echo $NAME
### Prepares Full File Address to send to the browser
sed 's/^/http:\/\/10.5.5.9\/videos\/DCIM\/100GOPRO\//g' LRVfile > LRV.http
### or
#sed 's/^/http:\/\/10.5.5.9\/videos\/DCIM\/100GOPRO\//g' LRVfile
### Read the LAST file, write file, print file Name
curl $(tail -r -n1 LRV.http) > /Volumes/"Work Space"/CapturedGOPR/$NAME ; echo " ";
echo Reading: $(tail -r -n1 LRV.http) && echo " " && sleep 15;
rm LRVfile && rm LRV.http && exit
#tail -r LRV.http | while read F; do curl $F > /Volumes/"Work Space"/CapturedGOPR/$NAME ; echo " "; echo Reading: $F && echo " " && exit; done;