
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (91)
-
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 (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 (...)
Sur d’autres sites (11409)
-
omadec : split data that will be used in the muxer to a separate file.
17 décembre 2011, par Anton Khirnovomadec : split data that will be used in the muxer to a separate file.
-
omadec : split data that will be used in the muxer to a separate file.
17 décembre 2011, par Anton Khirnovomadec : split data that will be used in the muxer to a separate file.
-
FFmpeg split videos into smaller chunks of 15 second each with a stride of 10 seconds
15 octobre 2022, par a mau5I want to split a 1 hour video into chunks of 15 seconds each. But after every 15 seconds I want to skip 10 seconds. For eg :- I want a clip from first 0-15 seconds save it, then skip 10 seconds, the second clip should be from 25-40 th second from the original video. Does someone know how to implement this using FFmpeg ?


ffmpeg -I Vid.mp4 -f segment -segment_atclocktime 1 -segment_clocktime_offset 00:00:10 -segment_time 00:00:15 -reset_timestamps 1 output_%03d.asf


This command is not working as expected. I don't want to implement this in a for loop, but in a single pass