
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (32)
-
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 -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (3845)
-
How can I find video rotation and rotate the clip accordingly using moviepy ?
28 mars 2022, par Tom BurrowsI'm using moviepy to import some videos, but the videos that should be in portrait mode are imported in landscape. I need to check whether the rotation has been changed, and if it has, rotate it back.



Is this functionality built into moviepy ? If not, how else can I check it ?


-
Can't find ffmpeg.exe [on hold]
31 juillet 2017, par Eldar AzulayI want to use ffmpeg for my c# program, so I downloaded it from their website here : https://www.ffmpeg.org/download.html by clicking on the big green button, but in this archive there’s no exe, which I need to run so I can use it.
This is that I see when opening the file I downloaded :
I just want to know how can I get the ffmpeg.exe file.
-
ffmpeg can't find files using C ? [closed]
14 décembre 2019, par Edoardo ColellaI tried to use
ffmpeg
concatenation withpopen
command in C but I get "No such file or directory". If I use Linux terminal with the same command it works.C code :
fp=popen("ffmpeg -i \"concat : audio/1.mp3|audio/2.mp3\" -acodec copyoutput.mp3", "r") ;
pclose(fp) ;Error in Linux shell :
audio/1.mp3|audio/2.mp3 No such file of directory foundWhat could be the problem ?