
Recherche avancée
Autres articles (65)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (6094)
-
Extract Motion Vectors From x264 source code
27 mai 2021, par Essam AlyIf you are familiar with the x264 source code, where in the code I can extract the MV (motion vectors) of each frame ? Can you point please to a line of code I can intercept and save the MVs to disk ?
Thank you.


-
Extract Motion Vectors From x264 source code
27 mai 2021, par Essam AlyIf you are familiar with the x264 source code, where in the code I can extract the MV (motion vectors) of each frame ? Can you point please to a line of code I can intercept and save the MVs to disk ?
Thank you.


-
ffmpeg) Where should I put the 'loop code' in concat ?
7 mars 2020, par vamanI’m new here.
I have 3 video files.(intro.mp4, main.mp4, outro.mp4)
I’m trying to make main.mp4 loop 3 times between intro.mp4 and outro.mp4.
Here’s the code. All I know about loop code is -stream_loop 3 -i main.mp4 -c copy\ Where should I put that code ? or How can I do ?ffmpeg -i intro2.mp4 -i MainLoop.mp4 -i Outro.mp4 -filter_complex "[0:v]fade=type=out:duration=10:start_time=20,setpts=PTS-STARTPTS[v0]; [1:v]fade=type=in:duration=3,fade=type=out:duration=5:start_time=8,setpts=PTS-STARTPTS[v1]; [2:v]fade=type=in:duration=2,setpts=PTS-STARTPTS[v2]; [v0][0:a][v1][1:a][v2][2:a]concat=n=3:v=1:a=1[v][a]" -map "[v]" -map "[a]" output.mp4