
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (76)
-
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 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (8362)
-
avformat/matroskaenc : Don't check twice whether to write tags
15 juin 2022, par Andreas Rheinhardtavformat/matroskaenc : Don't check twice whether to write tags
Because not all metadata is written as tags, the Matroska muxer
filters out the tags that are not written as tags.
Therefore the code first checks whether a Tag master element
needs to be opened for a given stream/chapter/attachment/global
metadata. If the answer turns out to be yes, it is checked again
whether a given AVDictionaryEntry is written as a tag.
This commit changes this : The Tag element is opened unconditionally
and in case it turns out that it was unneeded, it is discarded again.
This is possible because the Tag element is written into its own
dynamic buffer.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
How to convert image sequence to video using C ? [closed]
29 mars 2021, par user13899543I would like to know a way(s) to convert an image sequence (.bmp) to a video file using C. The video may be compressed or not. The code is to be included in a cross-platform commercial app, so the suggestions need to have permissive licenses.


What I have tried :


I tried openCV (apache license), but this library seems to be C++ only and should not be used from C.


I tried using systems calls from inside the C app to ffmpeg and python-openCV, but of course, this is inconvenient as it forces the client to install extra software.


I cannot do dynamic linking to ffmpeg (LGPL) because we cannot fullfill all the EULA requirements (the reverse engineer one, for example).


...


So any suggestions ?


Thanks !


-
FFMPEG : Video has same Dimensions even after Crop
8 juin 2021, par Raj DhakadI am using FFMPEG to do dynamic crop in a video.


The problem is, If I crop a 1920x1080 video to 100x100 am still getting a 1920x1080 video with only 100x100 part visible and other part tuned to green.


_flutterFFmpeg.execute('-y -i $input -filter_complex "[0:v]sendcmd=f=$txtFile,crop" $output'); 



txtFile :


0 crop w 100, crop h 100, crop x 10, crop y 10;
1 crop w 100, crop h 100, crop x 10, crop y 10;
2 crop w 100, crop h 100, crop x 10, crop y 10;
3 crop w 100, crop h 100, crop x 10, crop y 10;
4 crop w 100, crop h 100, crop x 10, crop y 10;
5 crop w 100, crop h 100, crop x 10, crop y 10;
6 crop w 100, crop h 100, crop x 0, crop y 0;
7 crop w 100, crop h 100, crop x 0, crop y 0;
8 crop w 100, crop h 100, crop x 0, crop y 0;
9 crop w 100, crop h 100, crop x 0, crop y 0;
10 crop w 100, crop h 100, crop x 0, crop y 0;
11 crop w 100, crop h 100, crop x 0, crop y 0;



The output Video File :
https://drive.google.com/file/d/10mjY9toRoMmlvazD6m57gIiuJa8Sqjki/view?usp=sharing


As you see, the Output contains Green Sides for the first 5 seconds and the rest of the video is not cropped at all.