Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (44)

  • ANNEXE : Les extensions, plugins SPIP des canaux

    11 février 2010, par

    Un 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 2013

    Puis-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, par

    On 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 Gramner
    x86inc : 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.

    • [DH] libavutil/x86/x86inc.asm
  • avcodec/mips : Improve hevc uni weighted vert mc msa functions

    11 octobre 2017, par Kaustubh Raste
    avcodec/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>

    • [DH] libavcodec/mips/hevc_mc_uniw_msa.c
  • I couldn't embed ffmpeg package while trying to create an exe file for my python script

    1er juillet 2024, par Abdelrahman Zaki

    I'm trying to create a python script that deals with audios and videos.&#xA;so, I need to use ffmpeg 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 using pyinstaller, it doesn't contain ffmpeg packages within it !&#xA;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.&#xA;What is the solution/the way to embed ffmpeg with my app ?

    &#xA;

      &#xA;
    • What I'm expecting is to find a solution...
    • &#xA;

    • What I've tried is that :
    • &#xA;

    • I tried to search on google, but I found nothing.
    • &#xA;

    • I tried to ask chatGPT and it gives me a script that doesn't work :)
    • &#xA;&#xA;

    &#xA;

    # my_app.spec&#xA;# Run with: pyinstaller my_app.spec&#xA;&#xA;# Basic PyInstaller configuration&#xA;block_cipher = None&#xA;&#xA;a = Analysis([&#x27;main.py&#x27;],  # Replace &#x27;main.py&#x27; with your Python script&#xA;             pathex=[&#x27;.&#x27;],&#xA;             binaries=[(&#x27;C:\\ffmpeg\\bin\\ffmpeg.exe&#x27;, &#x27;.&#x27;), &#xA;                       (&#x27;C:\\ffmpeg\\bin\\ffplay.exe&#x27;, &#x27;.&#x27;),&#xA;                       (&#x27;C:\\ffmpeg\\bin\\ffprobe.exe&#x27;, &#x27;.&#x27;)],&#xA;             ...&#xA;&#xA;             # Rest of the Analysis configuration goes here&#xA;&#xA;             pyz = PYZ(a.pure, a.zipped_data,&#xA;                      cipher=block_cipher)&#xA;&#xA;             exe = EXE(pyz,&#xA;                       a.scripts,&#xA;                       a.binaries,&#xA;                       a.zipfiles,&#xA;                       ...&#xA;&#xA;                       # Rest of the EXE configuration goes here&#xA;)&#xA;&#xA;

    &#xA;