Benutzer-Werkzeuge

Webseiten-Werkzeuge


raspberry_pi

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
Letzte Überarbeitung Beide Seiten der Revision
raspberry_pi [2013/11/24 11:41]
admin
raspberry_pi [2017/08/26 15:39]
admin
Zeile 1: Zeile 1:
 ====== Raspberry Pi ====== ====== Raspberry Pi ======
 +
 +===== Zeitraffer =====
 +
 +  *[[Vortrag Zeitraffervideo mit dem Rspberry Pi 3]]
 +
 +
 +==== Bilder aufnehmen ====
 +
 +  raspistill --timelapse 2000 --timeout 20000 -w 640 -h 480 -o image%04d.jpg
 +
 +
 +==== Zeitraffervideo erstellen ====
 +
 +  avconv -f image2 -i image%04d.jpg -r 30 -vcodec libx264 video.mp4
 +
 +  *[[http://​downloads.raspberrypi.org/​raspbian/​images/​|Download Raspbian]]
 +
 +  *https://​video2brain.com
 +
 +  *[[http://​www.christiani.de/​pdf/​97459_inhalt.pdf|Coole Projekte mit Raspberry PI]]
 +
 +  *[[http://​www.pcwelt.de/​ratgeber/​Die_besten_Verwendungsmoeglichkeiten_fuer_Raspberry_Pi-Mini-PC-7663628.html?​r=462515328416562&​lid=253846&​pm_ln=30|Die besten Verwendungsmöglichkeiten für Raspberry Pi]]
  
   *[[http://​www.pc-magazin.de/​ratgeber/​raspberry-pi-eigenbau-pc-linux-80-euro-1540639.html?​utm_source=computer-NL&​utm_medium=newsletter|PC Magazin]]   *[[http://​www.pc-magazin.de/​ratgeber/​raspberry-pi-eigenbau-pc-linux-80-euro-1540639.html?​utm_source=computer-NL&​utm_medium=newsletter|PC Magazin]]
   *[[http://​www.raspberrypi-spy.co.uk/​2013/​06/​playing-videos-on-the-raspberry-pi-command-line|Playing Videos On the Raspberry Pi Command Line]]   *[[http://​www.raspberrypi-spy.co.uk/​2013/​06/​playing-videos-on-the-raspberry-pi-command-line|Playing Videos On the Raspberry Pi Command Line]]
  
-  ​#!/bin/sh+  ​Videoverzeichnis: ​/daten/alpenverein/​videos
  
 +  /​home/​pi/​av.sh
 +
 +  *[[http://​www.peer.st/​dw/​doku.php?​id=debian|init.script hinzufügen/​entfernen]]
 +==== Mit omxplayer Filme wiederholen ====
 +
 +edu|days, Schwarzinger,​ 23.4.2014
 +
 +config.txt
 +
 +hdmi_force_hotplug=1 aktivieren
 +
 +raspi-config
 +
 +Standard Passwort: pi/​raspberry
 +
 +sudo adduser
 +
 +sudo usermod -a -G sudo rene , Benutzer zu Gruppe hinzufuegen
 +
 +sudo nano /​etc/​ssh/​sshd_config
 +
 +PermitRootLogin yes
 +
 +
 +
 +
 +  #!/bin/sh
   # get rid of the cursor so we don't see it when videos are running   # get rid of the cursor so we don't see it when videos are running
   setterm -cursor off   setterm -cursor off
- 
   # set here the path to the directory containing your videos   # set here the path to the directory containing your videos
   VIDEOPATH="/​home/​pi/​videos"​   VIDEOPATH="/​home/​pi/​videos"​
- 
   # you can normally leave this alone   # you can normally leave this alone
   SERVICE="​omxplayer"​   SERVICE="​omxplayer"​
- 
   # now for our infinite loop!   # now for our infinite loop!
   while true; do   while true; do
Zeile 28: Zeile 74:
     fi     fi
   done   done
 +
  
raspberry_pi.txt · Zuletzt geändert: 2022/03/18 15:47 von admin