Castopod

Reply to this note

Please Login to reply.

Discussion

Thanks, I’ll check them out. So far I found a few articles explaining PD2 but none with info on self hosting. Appreciated.

Anytime. It's hard to find truly self-hosted podcast software. I went looking when I wanted something to create my own very basic issue or atom podcast feed.

I couldn't find anything minimalist that would create a simple properly formatted podcast feed xml file from the command line, but I did find the Castopod project.

Ah I remember this one now, I did load it but there's a 50mb limit on file size, happy to go back to it if I can work out how to change that. Cheers!

that might be due to a php file size limit, is 50MB limit in the docs?

I’m not familiar with php, but on my express servers on node I have the same issue and have to configure it for larger file sizes. Probably just one line of code you need to add.

No mention, I’ve asked on GitHub and the Yunohost forum so fingers crossed. I assume there’s a config file somewhere…

I reached out to one of the devs on podcastindex.social I’ll let you know if I hear anything back.

Ahh thanks!

I'm not 100% sure but it looks like the current supported install method is via Docker. I did find these environment variable that you'll want to crank up to 512MB.

CP_MAX_BODY_SIZE ?number (with suffix) 512M

CP_PHP_MEMORY_LIMIT ?number (with suffix) 512M

https://docs.castopod.org/main/fa/getting-started/docker/#environment-variables

Also might want to check your nginx.conf for this value

client_max_body_size 512M;

https://github.com/YunoHost-Apps/castopod_ynh/issues/81