
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 (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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
Sur d’autres sites (9285)
-
FFMPEG, transcoding resolution error
6 mai 2014, par Sajith Dilshan JamalI am trying to convert a file using ffmpeg using the following command :
ffmpeg input.flv -strict experimental -s 360x288 output.3gp
I get the below error :
The specified picture size of 360x288 is not valid for the H.263 codec.
Valid sizes are 128x96, 176x144, 352x288, 704x576, and 1408x1152. Try H.263+The problem here is that i don’t use a command line to execute the commands, but through another program that I am coding,
So if I am to only use the above specified resolutions, is there a command for ffmepeg so that given a codec, to retrieve the possible resolutions so that I can select the optimal one to convert with, not just for the above codec, but all codecs supported by ffmpeg.
I have seen the documentation page of ffmpeg and the supported video resolutions but that is not what I am looking for, that is the resolutions that ffmpeg supports, not the resolutions the codec supports,
I am looking for a command that will give me the resolutions that a given code will support
thanks,
-
doc/filters : note minimum resolution for pixscope
10 octobre 2017, par Gyan Doshi -
Batch overlay logo to directory of video files with scale watermark in percentage of video resolution
28 septembre 2017, par Aariyan mindhelp me how to add auto scale watermark in percentage of video resolution code in this ?
for %%I in ("C:\Users\demo\*.mp4") do ffmpeg.exe -i "%%I" -filter_complex "movie=180n.png[watermark];[watermark][0]scale2ref=350*iw/2140:42*iw/2140[wm][v];[wm]setsar=1[logo];[v][logo] overlay=10:10:enable=not(between'(t,30,210)')[watermark]" -map "[watermark]" -map 0:a -codec:v libx264 -codec:a copy "C:\Users\files\%%~nI.mp4"
pause