(With the Kubuntu 15.04 beta)
With the KDE4 there is the 'DreamDesktop': http://kde-apps.org/content/show.php...content=156787
More of the KDE video wallpapers: https://forum.kde.org/viewtopic.php?f=83&t=119463
With the Plasma5 the video wallpaper is easy to make with the qml mediaplayer: http://doc.qt.io/qt-5/qml-qtmultimed...r.html#details .
Making directory:
~/.local/share/plasma/wallpapers/org.kde.beach/contents/ui/
Making files:
~/.local/share/plasma/wallpapers/org.kde.beach/metadata.desktop
~/.local/share/plasma/wallpapers/org.kde.beach/contents/ui/main.qml
This should work as it is - if it doesn't try with the qmlscene to get the error messages: https://www.kubuntuforums.net/showth...ma-qml-widgets .
At here: http://pastebin.com/nsmvE7Uw
There is a bug report: https://bugreports.qt.io/browse/QTBUG-40183 The gstreamer0.10-ffmpeg plugin may help, here it does. Either from the http://gstreamer.freedesktop.org/mod...st-ffmpeg.html or from a PPA ( https://launchpad.net/ubuntu/+ppas?n...mer0.10-ffmpeg ).
Right click the desktop > Desktop setting > Wallpaper Type (Video) > Apply > Ok...
Direct: http://youtu.be/PNu9AoP1V8E
More plasma 5 links: https://www.kubuntuforums.net/showth...ma-qml-widgets
With the KDE4 there is the 'DreamDesktop': http://kde-apps.org/content/show.php...content=156787
More of the KDE video wallpapers: https://forum.kde.org/viewtopic.php?f=83&t=119463
With the Plasma5 the video wallpaper is easy to make with the qml mediaplayer: http://doc.qt.io/qt-5/qml-qtmultimed...r.html#details .
Making directory:
~/.local/share/plasma/wallpapers/org.kde.beach/contents/ui/
Making files:
~/.local/share/plasma/wallpapers/org.kde.beach/metadata.desktop
Code:
[Desktop Entry] Encoding=UTF-8 Name=Beach Name[x-test]=xxBeachxx Type=Service ServiceTypes=Plasma/DeclarativeWallpaper Icon=preferences-desktop-wallpaper X-Plasma-MainScript=ui/main.qml X-KDE-PluginInfo-Name=org.kde.beach X-KDE-PluginInfo-EnabledByDefault=true
~/.local/share/plasma/wallpapers/org.kde.beach/contents/ui/main.qml
Code:
import QtQuick 2.0 import QtMultimedia 5.0 Item { MediaPlayer { id: mediaplayer autoPlay: true loops: MediaPlayer.Infinite source: "/home/online/Videos/Beach.avi" } VideoOutput { fillMode: VideoOutput.PreserveAspectCrop anchors.fill: parent source: mediaplayer } }
This should work as it is - if it doesn't try with the qmlscene to get the error messages: https://www.kubuntuforums.net/showth...ma-qml-widgets .
At here: http://pastebin.com/nsmvE7Uw
There is a bug report: https://bugreports.qt.io/browse/QTBUG-40183 The gstreamer0.10-ffmpeg plugin may help, here it does. Either from the http://gstreamer.freedesktop.org/mod...st-ffmpeg.html or from a PPA ( https://launchpad.net/ubuntu/+ppas?n...mer0.10-ffmpeg ).
Right click the desktop > Desktop setting > Wallpaper Type (Video) > Apply > Ok...
Direct: http://youtu.be/PNu9AoP1V8E
More plasma 5 links: https://www.kubuntuforums.net/showth...ma-qml-widgets
Comment