
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (6)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Les thèmes de MediaSpip
4 juin 20133 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
Thèmes MediaSPIP
3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...) -
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 (...)
Sur d’autres sites (2725)
-
tile option in FFMPEG command result to black screenshot
4 mars 2020, par sammaxI am managing to create a screenshot using ffmpeg engine and it works fine when I am try to output one individual image
ffmpeg -ss 01:05 -i input.mp4 -an -dn -sn -r 1 -vframes 1 -y -qscale 3 -vf "scale=width:high"
But when I try to create a multi-image (Thumbnail grid sheets) using
tile
option the output screenshot is empty blackffmpeg -ss 01:05 -i input.mp4 -an -dn -sn -r 1 -vframes 1 -y -qscale 3 -vf "select=not(mod(n\,3000)),scale=320:240,tile=4x3"
and here is what I want to achieve image
-
Using FFMPEG : How to do a Scene Change Detection by audio
9 janvier 2021, par dantedelI have a video that has many scenes, within each scene there are several video cuts with and single unique narator.
I'm trying to split the video to individual scenes based on narator. So far only found only a way using select/scene to get timestamps based on scene video changes.


Using FFMPEG : How to do a Scene Change Detection ? with timecode ?


ffmpeg -i input.flv \
 -filter:v "select='gt(scene,0.4)',showinfo" \
 -f null \
 - 2> ffout



Is there an equivalent way to get the scene changes by examining changes in audio ?


-
ffmpeg with two input rtmp streams with overlay causing 5 sec delay
13 juin 2019, par GoodStudentI’m using
ffmpeg
on merging two videos, usingoverlay
taking input from twortmp
streams getting lag of 5 seconds in one of the videos in stream3 .Below is the command I’ve tried
ffmpeg -i rtmp://stream1 -i rtmp://stream2
-filter_complex "[0:v]scale=1280:720;[1:v]scale=320:180[v1];[v0][v1]overlay=eof_action=pass[out1]"
-map [out1] -f flv rtmp://stream3I’m expecting less than 1 sec lag in overlay as individual streams are getting less than 1 sec lag