
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (44)
-
ANNEXE : Les extensions, plugins SPIP des canaux
11 février 2010, parUn plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
Les extensions que MediaSPIP nécessite pour fonctionner
Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...)
Sur d’autres sites (6593)
-
x86inc : AVX-512 support
25 mars 2017, par Henrik Gramnerx86inc : AVX-512 support
AVX-512 consists of a plethora of different extensions, but in order to keep
things a bit more manageable we group together the following extensions
under a single baseline cpu flag which should cover SKL-X and future CPUs :
* AVX-512 Foundation (F)
* AVX-512 Conflict Detection Instructions (CD)
* AVX-512 Byte and Word Instructions (BW)
* AVX-512 Doubleword and Quadword Instructions (DQ)
* AVX-512 Vector Length Extensions (VL)On x86-64 AVX-512 provides 16 additional vector registers, prefer using
those over existing ones since it allows us to avoid using `vzeroupper`
unless more than 16 vector registers are required. They also happen to
be volatile on Windows which means that we don't need to save and restore
existing xmm register contents unless more than 22 vector registers are
required.Big thanks to Intel for their support.
-
avcodec/mips : Improve hevc uni weighted vert mc msa functions
11 octobre 2017, par Kaustubh Rasteavcodec/mips : Improve hevc uni weighted vert mc msa functions
Pack the data to half word before clipping.
Use immediate unsigned saturation for clip to max saving one vector register.Signed-off-by : Kaustubh Raste <kaustubh.raste@imgtec.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
I couldn't embed ffmpeg package while trying to create an exe file for my python script
1er juillet 2024, par Abdelrahman ZakiI'm trying to create a
python script
that deals withaudios and videos
.
so, I need to useffmpeg
and it works -for details, I used a CLI program that deals with it, not me-, but when I tried to create an exe file usingpyinstaller
, it doesn't contain ffmpeg packages within it !
Now, if anyone want to use the app, he couldn't until he downloads ffmpeg independently, and it's a further step that makes it harder reach my app.
What is the solution/the way to embed ffmpeg with my app ?

- 

- What I'm expecting is to find a solution...
- What I've tried is that :
- I tried to search on google, but I found nothing.
- I tried to ask chatGPT and it gives me a script that doesn't work :)











# my_app.spec
# Run with: pyinstaller my_app.spec

# Basic PyInstaller configuration
block_cipher = None

a = Analysis(['main.py'], # Replace 'main.py' with your Python script
 pathex=['.'],
 binaries=[('C:\\ffmpeg\\bin\\ffmpeg.exe', '.'), 
 ('C:\\ffmpeg\\bin\\ffplay.exe', '.'),
 ('C:\\ffmpeg\\bin\\ffprobe.exe', '.')],
 ...

 # Rest of the Analysis configuration goes here

 pyz = PYZ(a.pure, a.zipped_data,
 cipher=block_cipher)

 exe = EXE(pyz,
 a.scripts,
 a.binaries,
 a.zipfiles,
 ...

 # Rest of the EXE configuration goes here
)