Eriol,
I am on android 7 latest firmware with my Q10, my movies are stored on a NAS. When I execute this command:
adb shell busybox mount -t cifs -o user="guest",iocharset=utf8,file_mode=0777,dir_mode=0777,cache=loose //192.168.1.5/Video /sdcard/mountpoints/NASvideo
I get 2 mountpoints
1 - //192.168.1.5/Video on /storage/emulated/0/mountpoints/NASvideo type cifs (rw, etc etc etc
2 - //192.168.1.5/Video on /mnt/runtime/default/emulated/0/mountpoints/NASvideo type cifs (rw, etc etc etc
Both mountpoints are not accessable throug X-plore or through Kodi, in no way. I expected this once as a mount point:
//192.168.1.5/Video on /mnt/sdcard/mountpoints/NASvideo type cifs (rw, etc etc etc
Seems that mounting to SDcard directory gets screwed up, don't know why so I tried something different.
adb shell busybox mount -t cifs -o user="guest",iocharset=utf8,file_mode=0777,dir_mode=0777,cache=loose //192.168.1.5/Video /mnt/media_rw/sda1/mountpoints/NASvideo
this points to my internal hard drive. Mount result:
//192.168.1.5/Video on /mnt/media_rw/sda1/mountpoints/NASvideo type cifs (rw, etc etc etc
That looks better and it works, I can browse this path in X-plore and Kodi.
So I tried this to be independend of my harddrive:
adb shell mkdir -p /mnt/media_rw/MPvideo
adb shell chmod 0777 /mnt/media_rw/MPvideo
adb shell busybox mount -t cifs -o user="guest",iocharset=utf8,file_mode=0777,dir_mode=0777,cache=loose //192.168.1.5/Video /mnt/media_rw/MPvideo
Result mount command:
//192.168.1.5/Video on /mnt/media_rw/MPvideo type cifs (rw, etc etc etc
Looks good, and also accessable. So I copied your modified playercorefactory.xml to the kodi dir, added the mountpoint in kodi as a location for video files and YES finaly I get MXplayerfree to work from kodi.
Well, after reboot this is all gone but I will look into the posted Auto_Mount_Multimedia_2_Q10_v0.2.rar and change install-recovery.sh to the correct directory (notepad++). That will be a job for the weekend, have to think about a one time setup directory structure for me (somethink like /mnt/media_rw/mountpoints/ and all others in that one).
Thanks for your help pointing me to get more knowledge of adb and some linux commands.