
Recherche avancée
Autres articles (65)
-
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 (7602)
-
Writing each I frame into a different .mp4 file and adding some additional logs
8 juin 2018, par MSD PaulWhile using x264 encoder, how to store each and every I frame (from each and every .png file (frame)) into a different .mp4 file ?
If I have 5 frames, after encoding those 5 frames into 5 I frames how to write those in different files ?
Another Question : How to put few additional log messages or print statements in few functions in x264 code which I can view on the terminal as the encoding output like other logs ???
-
Ffmpeg apply filter with C++ API
29 septembre 2022, par TurgutI want to apply a filter to my encoded ffmpeg video. I've found a terminal command that presumably does what I want. But the problem is I want to do this inside my code, specifically my encoder.


How can I achieve this ? What function/code snippet allows me to propperly implement
colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131[colorchannelmixed]

and[colorchannelmixed]eq=1.0:0:1.3:2.4:1.0:1.0:1.0:1.0[color_effect]
using the C library ?

-
Extracting Frames from Video using FFMPEG in GPU and File Name with TimeStamp in Linux
2 septembre 2019, par SRajI have Long video 8hrs to be converted to individual frames to be saved in a folder with the filename in the format "InputVideoName_Frame_Number_TimeStampoftheframeinthevideo.jpg" for example : InputVideo2_234_130425 in a python code. My system has GPU to process the load.
I was able to get to a part of it by running the below code in terminal but was not able to have the filename in the format i need and also was not able to run it in python code with absolute pathnames
ffmpeg -i ActualPath/Video.mp4 -vf fps=1 Outputfolder/out%d.jpg