
Recherche avancée
Autres articles (111)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...)
Sur d’autres sites (10903)
-
How to make .webm videos that change resolution [closed]
5 août 2022, par IronKermanI recently came across a video on discord, that can somehow change from a 9:16 aspect ratio into a 1:1 aspect ratio video and I'm wondering how this was done, and how I can replicate it.

Thanks in advance

Incase someone needs the video to understand what I'm talking about you can find it here

-
Nginx Rtmp Module - How to check resolution when pushing rtmp stream to server before redirecting stream to another application ?
22 août 2022, par bui the vuongI have a problem when developing a livestream system with nginx-rtmp-module . I have consulted some systems, there is a function that when pushing the rtmp stream, the livestream systems can recognize the resolution of the stream -> from there it will encode to hls with the corresponding profiles. For example stream 720p produces hls file with 360p -> 720p , if stream 1080p will produce hls file with 360p -> 1080p . I have tried the ways but no success. So how can I check the resolution and redirect the rtmp stream to the appropriate application for encoding. Looking forward to everyone's advice.


-
Find a resolution (dimension) of a video object saved in S3 - in rails
27 septembre 2015, par JVKI have video files saved in s3 and I want to find the dimension/resolution of any file (lets assume file sizes are in 500mb) per the request comes in my rails app.
One of the options, I have in my mind is :
Download (getObject) the file in local memory and use ffmpeg to find the required info. I currently don’t have ffmpeg, as I don’t need that for any task.
But, I don’t like this option, reason is - I don’t want to waste bandwidth to download it first (takes time) from S3 and then run cpu and memory intensive ffmpeg on my server to merely find the dimension/resolution of the video.
Is there any better solution ?
S3 object HEAD call on object unfortunately doesn’t return dimension information.