![]() |
Wrong playercorefactory - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Video Support (https://forum.kodi.tv/forumdisplay.php?fid=264) +--- Thread: Wrong playercorefactory (/showthread.php?tid=372246) |
Wrong playercorefactory - Pondo_Sinatra - 2023-02-26 Hello, I'd like to play Videofiles from my Fritz.Nas with kodi 20 on my Fire TV Stick. With Kodi it is interrupting every few seconds. I Mentioned, that VLC works fine. So I tried to start videos with a playercorefactory.xml file. But after putting file into the userdata folder, I can't open any videofile in kodi (Error Message: "Can't playback video file" or something like that). I think there is a error in the xml file, but I dont know, where. Please Help me. Thank you!! Code: <playercorefactory> RE: Wrong playercorefactory - Pondo_Sinatra - 2023-02-26 Edit: Even change <rule video="true" player="dvdplayer"> to <rule video="true" player="VLCPlayer"> had no effect. RE: Wrong playercorefactory - izprtxqkft - 2023-02-27 sorry you cant use standard execution calls from other systems on android your definition is telling kodi to execute the commad "org.videolan.vlc --fullscreen" and that command does not exist because VLC on android is not a program, its an app android uses activity manager to start apps in this way, you need to find a working solution for starting vlc on android, it should be something like "am start org.videolan.vlc/.Main" ... because am is an actual android command i dont use vlc on android or in this manner to be able to provide the exact command RE: Wrong playercorefactory - Pondo_Sinatra - 2023-02-27 Thank you. But the "--fullscreen" command i got from kodi wiki ![]() No I tried this, but kodi internal player is used instead of vlc. Any idea? Code:
RE: Wrong playercorefactory - izprtxqkft - 2023-02-27 you are still following the directions for a standard system not android see the definition for android here - https://kodi.wiki/view/External_players#Android note the filename is "am" as i suggested and the package name is in the commandline, that example is using the android activity manager which is the correct method what that example is not going to show is how to call VLC from the activity manager which i cant provide, its something youre going to have to locate RE: Wrong playercorefactory - Pondo_Sinatra - 2023-02-27 Thank you, but in the Wiki link is under "Working Example" almost the code I used in my first post or am I wrong. Sorry and thank you for your patience. RE: Wrong playercorefactory - izprtxqkft - 2023-02-27 i finally found the link youre reading, it does claim to be a working example RE: Wrong playercorefactory - izprtxqkft - 2023-02-27 here this works but i dont understand why... no matter ill work out why i have competing information outside of this thread
RE: Wrong playercorefactory - Pondo_Sinatra - 2023-02-28 Thank you, but it doesn't work for me. Maybe it's a problem with handling SMB share? RE: Wrong playercorefactory - izprtxqkft - 2023-02-28 potentially yes, vlc may not be able to access the media |