So bekommt man über eine einfach Videos auf einen Chromecast gestreamt:
Erst einmal einen Desktop- Eintrag, um das eigentliche Script zu starten. Nicht vergessen, das Desktop- File auf „ausführbar“ zu setzen:
[Desktop Entry] Version=1.0 Name=Videos auf dem Fernseher Comment=Zeigt Videos auf dem Fernseher Exec=/home/norbert/bin/playVideoOnChromecast.sh Icon=/home/alex/Pictures/backup.png Terminal=true Type=Application Categories=Application;
und das Script selber, ebenfalls ausführbar
#!/bin/bash videoFile=$(zenity --file-selection --title="Wähle Deinen Video- Film" --filename=$HOME/Videos/Videos_Backup/ --file-filter='Movie files (mp4) | *.mp4' ) if [ -z "$videoFile" ] then zenity --info --text="Hallo Norbert, Du hast keinen Film ausgewählt" else s=${videoFile##*/} zenity --info --text="Hallo Norbert, drücke OK und ${s%.*} startet" mkchromecast --control --video -n 'Büro 2' -i "$videoFile" fi