Python Forum

Full Version: main libvlc error: stale plugins cache:
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello again,

I'm having some issues that show up when I run a script in Windows 10 shell, but not when I run it in the Idle shell. I get a little over 360 lines of this and I'm not sure what's causing it. I've seen some talk about this problem with Linux users, but nothing for Windows so far. I'm a newbie, so please pardon my ignorance in advance :) Thanks!

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\access\libaccess_concat_plugin.dll

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\access_output\libaccess_output_dummy_plugin.dll

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\audio_filter\libaudiobargraph_a_plugin.dll

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\audio_mixer\libfloat_mixer_plugin.dll

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\audio_output\libadummy_plugin.dll

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\codec\liba52_plugin.dll

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\control\libdummy_plugin.dll

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\d3d11\libdirect3d11_filters_plugin.dll

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\d3d9\libdirect3d9_filters_plugin.dll

[00000175d4715fe0] main libvlc error: stale plugins cache: modified C:\Program Files\VideoLAN\VLC\plugins\demux\libadaptive_plugin.dll

etc...
If it helps, this is the sample code that I'm trying to run, which gives me the errors listed above.


import vlc

mp3_url="http://www.kuhf.org/programaudio/engines/eng1_64k.mp3"
x=vlc.MediaPlayer(mp3_url)
x.play()

y=input("please press any key to continue.")
I figured it out. I had to re-install the VLC media player and python-vlc, just to be sure, to get it to stop giving me the "stale plugins cache" error.

I have another one now that displays "[000002db04a2c120] prefetch stream error: unimplemented query (264) in control" after every new song is played. It seems to be a random error though.

Oh well. I can live with this one. If anyone has any ideas about the new error, please let me know.

Thanks!