
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (60)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
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 (...)
Sur d’autres sites (8703)
-
fate/hevc : add clip for persistent_rice_adaptation_enabled_flag
29 août 2020, par Xu Guangxin -
If I cut a 10 second clip into two parts, would the ending time for the first clip be 00:00:05 or 00:00:04 to prevent overlapping ?
28 mai 2022, par DIRTY DAVEI'm trying to cut a 10 second clip into two parts and then merging the two clips into one using a movie editing software.


ffmpeg -ss 00:00:00 -i C:/Users/Dave/Desktop/movie.mp4 -to 00:00:05 -c copy -copyts C:/Users/Dave/Desktop/part1.mp4


ffmpeg -ss 00:00:05 -i C:/Users/Dave/Desktop/movie.mp4 -to 00:00:10 -c copy -copyts C:/Users/Dave/Desktop/part2.mp4


I'm confused on whether the clip time being cut in the first command should be either

00:00:05
or00:00:04
to prevent an overlapping second of a clip because the second command is starting at00:00:05
. What should it be ?

-
libavutil/common : clip nan value to amin
15 novembre 2021, par Mark Reidlibavutil/common : clip nan value to amin
Changes av_clipf to return amin if a is nan.
Before if a is nan av_clipf_c returned nan and
av_clipf_sse would return amax. Now the both
should behave the same.This works because nan > amin is false.
The max(nan, amin) will be amin.Signed-off-by : James Almer <jamrial@gmail.com>