
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (94)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (10275)
-
Create video from images we selected ?
7 avril 2022, par devfozI could not find any solutions to this issue. There is a package in pub. dev but I am not sure is this the right way : https://pub.dev/packages/flutter_ffmpeg


Is there a guide for this, anyone can help ?


-
avformat/matroskaenc : Move adding SeekEntry into end_ebml_master_crc32()
27 avril 2020, par Andreas Rheinhardtavformat/matroskaenc : Move adding SeekEntry into end_ebml_master_crc32()
Up until now, SeekEntries were already added before
start_ebml_master_crc32() was even called and before we were actually
sure that we really write the element the SeekHead references : After
all, we might also error out later ; and given that the allocations
implicit in dynamic buffers should be checked, end_ebml_master_crc32()
will eventually have to return errors itself, so that it is the right
place to add SeekHead entries.The earlier behaviour is of course a remnant of the time in which
start_ebml_master_crc32() really did output something, so that the
position before start_ebml_master_crc32() needed to be recorded.
Erroring out later is also not as dangerous as it seems because in
this case no SeekHead will be written (if it happened when writing
the header, the whole muxing process would abort ; if it happened
when writing the trailer (when writing chapters not available initially),
writing the trailer would be aborted and no SeekHead containing the
bogus chapter entry would be written).This commit does not change the way the SeekEntries are added for those
elements that are output preliminarily ; this is so because the SeekHead
is written before those elements are finally output and doing it
otherwise would increase the amount of seeks.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
OpenCV build keeps failing with errors related to ffmpeg [closed]
23 juillet 2024, par Aterox_osI am trying to install OpenCV on a Raspberry PI 4 with Raspbian Version 12. The default method via pip didnt work it kept failing to build the wheel. So I tried to install it manully.
I followed this guide. I change the swap size to 1024mb. I also tried to run just make without the -j4 parameter. But it didnt work. According to the error it seems like its an issue with the naming of the ffmpeg codec.
I could disable disable ffmpeg in the cmake command but I assume its fairly important for an computer vision library.
How can I fix it ?


Here is the log of the cmake command (The same one as in the guide except WITH_QT=ON) :
Cmake log
And here is the make log :
Make log


As mentioned I tried increasing the swap size and instead of running
make -j4
I just ranmake
. I also tried the normal installation viapip install opencv-python
. I also tried installing it with and without a virtual environment.