matteobp
-
Posts
54 -
Joined
-
Last visited
Reputation Activity
-
matteobp reacted to zador.blood.stained in BananaPiPro. Video Accelerated No Work.
You can try compiling latest smplayer on your device.
http://sourceforge.net/projects/smplayer/files/SMPlayer/15.11.0/smplayer-15.11.0.tar.bz2/download
You'll need to install required dependencies (search or ask on forum.smplayer.info) and run create_deb.sh
Edit: according to mpv manual, more or less recent mpv versions support playing online video natively if youtube-dl is installed. I recommend installing youtube-dl manually or with pip/pip3 since Debian package doen't update as often as it needs to do.
-
matteobp reacted to Igor in Banana Pi PRO & M1Plus no Wifi / Armbian 4.5
I actually changed the driver in last build and it was only tested on Cubietruck which has almost the same chip.
Now, I am using http://linux-sunxi.org/Cubietruck/AP6210
If you are running latest image, than try with installing this kernel:
apt-get install linux-image-banana If this will work without any other interventions (I assume you have the proper bananapro.bin) than I need to investigate why it's not working with this new driver. The problem is that I am also lack of this hardware ... to test.
-
matteobp reacted to Igor in Unable to compile latest sources
Sources are broken. I could compile the driver with going little back. Issue this before make
git checkout 906c36ed45ceb53fecd5fc72e821c11849eeb1a3 -
matteobp reacted to Igor in Freezing video output on Banana PI M1+
No, my scripts are not designed for such use but you can extract certain commands.
You can install desktop standard way ... just fix the xorg configuration afterwards. The part which I pointed out is critical - you need to disable DPMS, perhaps not all are needed ...
Section "Monitor" Identifier "Monitor0" Option "DPMS" "false" EndSection Section "ServerFlags" Option "BlankTime" "0" Option "StandbyTime" "0" Option "SuspendTime" "0" Option "OffTime" "0" EndSection -
matteobp reacted to butterfly in Freezing video output on Banana PI M1+
# # No DPMS (sunxi-murX)
#
## create/modify 3 (or all in one) file(s) ...
dir /etc/X11/xorg.conf.d/
#
# file 50-monitor.conf
#
Section "Monitor"
Identifier "Default Monitor"
Option "DPMS" "false"
EndSection
#
# file 60-screen.conf
#
Section "Screen"
Identifier "Default Screen"
Device "Default Device"
Monitor "Default Monitor"
EndSection
#
# file 90-server.conf
#
Section "ServerFlags"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection
## ... and go results: /var/log/Xorg.0.log
... file 50-monitor.conf added
[ 25.538] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 25.538] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 25.671] (==) No Layout section. Using the first Screen section.
[ 25.671] (==) No screen section available. Using defaults.
[ 25.671] (**) |-->Screen "Default Screen Section" (0)
[ 25.671] (**) | |-->Monitor "<default monitor>"
[ 25.673] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 25.673] (**) Option "BlankTime" "0"
[ 25.673] (**) Option "StandbyTime" "0"
[ 25.673] (**) Option "SuspendTime" "0"
[ 25.673] (**) Option "OffTime" "0"
... file 60-screen.conf added
[ 1118.500] (==) No Layout section. Using the first Screen section.
[ 1118.501] (**) |-->Screen "Default Screen" (0)
[ 1118.501] (**) | |-->Monitor "Default Monitor"
[ 1118.502] (**) Option "BlankTime" "0"
[ 1118.502] (**) Option "StandbyTime" "0"
[ 1118.502] (**) Option "SuspendTime" "0"
[ 1118.502] (**) Option "OffTime" "0"
was a hard work to register here -
matteobp got a reaction from Igor in "CAP_SYS_MODULE (deprecated)" error in dmesg output
The system seems to work without problem.
This is the output of lsmod
root@bananapi:~# lsmod Module Size Used by cpufreq_userspace 3524 0 spidev 6366 0 a20_tp 3365 0 8021q 18593 0 garp 6072 1 8021q stp 2032 1 garp llc 5365 2 stp,garp sunxi_ir 4037 0 hidp 17640 0 rfcomm 58686 0 hci_uart 25000 0 bluetooth 264185 5 hidp,hci_uart,rfcomm It happens after login in graphical environment (XFCE). I have checked dmesg with putty from another computer, and no such row until login. So I analyzed better my desktop, and I found out the problem: Network Monitor Applet (added by me together with other applets). I removed it and the message disappeared.
Problem solved. Thanks for support.