Player does not find mp3 file, possible through chapter images
krlng opened this issue · 6 comments
Hello,
I currently can not make the PodLove Player run my most recent podcast episode. To me the mp3 file looks just fine and it was produced using auphonic with the same workflow that created my last 20 episodes. Also the duration detection works correctly.
The only thing that might cause the issue are chapter images, as I used those for the first time in this episode. Are there any known problems with mp3 files that contain chapter images?
Error message of the audio player:The Player recieved an invalid configuration. Without media files the player can't be used. Please reach out to the host to fix this problem.
The problematic file: https://techtiefen.de//wp-content/uploads/37_datenvisualisierung.mp3
Podlove podcast publisher version 3.8.1
Hey,
can you provide a test page with the player not playing the audio file?
As soon as the episode is online, you can also check the corresponding configuration for errors, for example: https://techtiefen.de/36-nlp/?podlove_action=pwp4_config
Okay, I simply published it: https://techtiefen.de/37-datenvisualisierung/?podlove_action=pwp4_config but I don't see any errors
At this point the code tries to get the HTTP response headers of the file (url) using curl
, apparently this fails at the moment. Maybe something was changed on the server? Can you check the correct function of curl
via the console at the server?
Does it work for curl -I 'https://techtiefen.de/wp-content/uploads/37_datenvisualisierung.mp3'
?
Maybe you can find more tips here: https://community.podlove.org/search?expanded=true&q=file%20not%20found
Thanks very much, I found the issue. I run my wordpress installation in a docker container and from that I was not able to fulfill the curl without certification error. The reason where outdates SSL base certificates, after upgrading those and a container restart it is working again. Thanks a lot.