
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (95)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (8596)
-
ffmpeg : cut from left (with -ss) - incorrect result
20 novembre 2018, par Kirill ZhirnovI have an auto generated video from image (30 secons) :
ffmpeg -loop 1 -i img1.png -f lavfi -i anullsrc -pix_fmt yuv420p -c:v libx264 -c:a aac -ar 44100 -ac 2 -t 30 img.ts
I need to cut it. If I cut it from right (e.g from 0 seconds to 5) - it works fine :
ffmpeg -ss 0 -i img.ts -to 5 -c copy cropped.ts
But if I want to cut it from left (e.g from 5 second to 8) - the result is damaged video :
ffmpeg -ss 5 -i img.ts -to 8 -c copy cropped.ts
What should I do to fix it ?
Thanks in advance !
-
AVI merging with FFmpeg truncated
6 juin 2012, par Masud RahmanI was using FFmpeg to merge two avi files which were converted to AVI from wmv. The conversion from wmv to avi worked fine, but when I am going to merge those two avi files, some part of the longer video is truncated. Also if the first video is without sound, then the merged video is not containing sound at all. What may be the fix ? Please anybody with FFmpeg expertise, help me.
Note : Command for merging
ffmpeg -isync -i "concat:file1.avi|file2.avi" -f avi -c copy merged.avi
Thanks in advance
-
What's common encoders and decodes on Android
31 mai 2018, par CoXierI do not know whether it’s suitable to ask this question here. If not, please tell me , thanks in advance.
Recently I am working on FFmpeg for Android. Everything works well but its size is too large so I decide to reduce the size.
I think I should at first only enable some encoders that I maybe use. What’s common encoders and decodes on Android ?
In additional, I can use
./configure --list-encoders
to show all available encodes.