
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (18)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (3545)
-
Anomalie #4756 (Nouveau) : Régressions liées aux évolutions des styles du privé
1er mai 2021Merci de rapporter ici les régressions liées aux évolutions des styles du privé.
Pour simplifier je suggère de tout regrouper ici, même les choses concernant les plugins-dist.Cela concerne principalement les boutons, les formulaires, les boîtes, le bandeau et les choses indirectement liées.
Je m’attaquerai à tout cela après la PR sur les listes d’objets.Formulaires¶
- [ ] Formulaire de traduction : tout est décalé.
- [ ] Formulaire de dates : il reste des espacements à corriger.
- [ ] Formulaire instituer : la couleur de fond doit coller aux bords de la boîte.
- [ ] Formulaire editer_liens : problèmes d’espacements et de lisibilité en général.
- [ ] Formulaire logo + bigup : le bouton de validation étant caché, le conteneur .boutons visible fait bizarre.
Boutons¶
- [ ] Unifier les boutons de suppression dans les listes d’objets liés (mots-clés, etc.)
- [ ] Boutons formulaire traitements des images : ajuster couleurs, survol notamment.
Boîtes¶
- [ ] Boîte auteur : la couleur de fond du champ biographie doit coller aux bords.
- [ ] Boîtes (toutes) : dans une .fiche_objet, régler la marge interne quand il n’y a pas de titre (visible sur la boîte « article proposé pour publication » par exemple).
- [ ] Boîtes erreurs et cie : aligner le picto sur la 1ère ligne de texte quand il n’y a pas de titre.
Alertes¶
- [ ] Mieux aligner le bouton de fermeture
-
ffmpeg x11grab inputting improperly
20 décembre 2017, par Not a superuserI have the stock ffmpeg install from the xbps repository. I’ve used it before, but am on a new system.
Running "ffmpeg x11grab -video_size 1280x800 -framerate 60 -i $DISPLAY output.mkv" yeilds no errors, but when I watch the video it is a mess switching between workspaces and with only partly rendered programs.
Taking other inputs such as webcam work fine, and different encoding methods don’t change anything (though webm flat out doesn’t work, but that’s not a problem for me).
I’ve tried what’s here : https://wiki.archlinux.org/index.php/FFmpeg
Only other thing to note is that I use i3 as a dm, which shouldn’t be a problem, but figured I’d state it just in case.
EDIT :
I was using compton for composite, and that was where my issue lied...
https://github.com/chjj/compton/issues/381Thanks !
-
Problem with processing FFMPEG video , the output video is totally black in first 3 seconds
13 janvier 2021, par Trần Minh TuấnI want to make a slideshow by using concat demuxer like this link :
https://trac.ffmpeg.org/wiki/Slideshow


Here is the textfile preinputFiles.txt :


file 'path a'
duration 2
file 'path b'
duration 2
file 'path c'
duration 2
file 'path c'



and my command array is :


String[] cmd = new String[]{
 "-f","concat","-i",
 textFile,
 "-vsync", "vfr", "-pix_fmt", "yuv420p",
 dest.getAbsolutePath()};



the video has 3 seconds that it is totally black and run from 3s to 9s even the gallery shows that it is a 6 seconds long video .


Thanks for the help !