i am using cloudinary with strapi to upload videos and i am using this code
module.exports = ({ env }) => ({
// …
upload: {
config: {
provider: ‘cloudinary’,
providerOptions: {
cloud_name: env(‘CLOUDINARY_NAME’),
api_key: env(‘CLOUDINARY_KEY’),
api_secret: env(‘CLOUDINARY_SECRET’),
},
actionOptions: {
upload: {},
uploadStream: {},
delete: {},
},
},
},
// …
});
the videos is coming is lagging , i want optimization of videos streaming , can anyone suggest me how can i improve it or what code should i have to add more?
This topic has been created from a Discord post (1230040836947836959) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord