
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (107)
-
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) (...)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)
31 mai 2013, parLorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
Description des scripts
Trois scripts Munin ont été développés :
1. mediaspip_medias
Un script de (...)
Sur d’autres sites (4767)
-
ffmpeg - scrolling text with specified boundaries and cut video when text ends
19 février 2017, par Elma PaulHaving this working ffmpeg filter with overlayed scrolling text
f -i text_bg.mp4 -vf "drawtext=enable:fontsize=200:fontcolor=White:fontfile='ARIALN.TTF':text='asdfhlajsdh LKFJAHSDFH':x=-(mod(8*n\,w+tw)-tw):y=h/2-th/2" outtt.mp4 -y
I have two questions :
1.) How can I set specified boundaries for drawtext ? Just fix positions where the text will dissapear. Like here in picture
scrolling text with specified boundaries example
2.) How is it possible to cut the video(specify time) according to the text length.Meaning that the video will finish after ends the text line +plus one second ? -
FFmpeg : how to make video out of slides and audio
17 juillet 2014, par Muhammad UmerSo i have several images some png and some jpgs. And i have mp3 audio. I want to make a video file don’t care what format.
So i want either :
A video made up of xyz size meaning images are centered and cropped if they go beyond dimensions coupled with audio in mp3 format..
or just one image centered or and cropped, still image, video with audio.
I have tried copying and pasting things and even modifying them after reading documents but in the end i got a blank video with audio and huge file that took forever to complete.
I have windows 7.
-
How can I use FFMPEG to fix a mpeg.ts file
29 septembre 2017, par Tim McClureI have an mpegts file that has some minor quality issues. Can I use ffmpeg to create an mp4 file from it and the mp4 file plays fine - meaning the transmuxing to mp4 corrected the problem. I am trying to use ffmpeg to re-encode the mpegts file to another mpegts file and through the transmuxing have the video file fixed. The script I am using :
ffmpeg -re -i 20170925T214300_S051-0001.ts -pix_fmt yuv420p -vcodec libx264 -r 25 -vf "scale=1024:576" -threads 0 -b:v: 2048k -bufsize 2244k -maxrate 2560k -profile:v baseline -g 50 -x264opts no-scenecut -x264opts force-cfr -an -f mpegts mcclure.ts
Is what I am trying to do possible ?