Recherche avancée

Médias (91)

Autres articles (71)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10567)

  • Revision f7023ea014 : Remove unnecessary local variable declaration This commit removes a repetitive

    22 septembre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Remove unnecessary local variable declaration

    This commit removes a repetitive local variable declaration in
    vp9_rd_pick_inter_mode_sb.

    Change-Id : I1b0afa98ff1ecbfb46e17d3d1cee95d32c4309db

  • Making half an image transparent from the command line

    14 octobre 2016, par Alex Konetchy

    I don’t really know where to start with this one. I’m trying to do something that I thought would be relatively simple to accomplish with imagemagick, but I don’t know the exact command to start with. I need to draw a line through an image, and then make everything above the line transparent in the image, and make everything below the line, the orignal image. What would be the best way to accomplish this using imagemagick ?

    So what I’ve come up with for now is to crop the image, and then resize it to the original size, but with a transparent background. The command I use is this, but it always comes out black. I’m not understanding why.

    convert -background none -gravity south out.png -resize 400x200 -extent 400x400 result.png

    Thanks for all of the help !

  • React-Native - Path to local Files

    31 mars 2023, par iSaBo

    my question is about react-native 0.60+ and about local files.

    



    My App has the followed folder structure :

    



      

    • App.js
    • 


    • android
    • 


    • ios
    • 


    • node_modules
    • 


    • src


        

      • components
      • 


      • views
      • 


      • assets
      • 


      • images


          

        • myImage.png
        • 


      • 


    • 


    



    Now, i want to get the path from myImage.png.
I want to add an Watermark to a Video. The Watermark to add, is the myImage.png. For that issue i use the ffmpeg-Library.

    



    But how can i access to these files ? What is the Path of these files ?
i have tried it with React-Native-Filesystem (RNFS), but with no solutions.

    



    Every time a get : Directory or File not exists

    



    FFMPEG Cmd :

    



    const ffmpegWatermarkCommand = '-i '
+ RNFS.ExternalStorageDirectoryPath+ '/videos/myVideo.mp4 '
+ "-i [Path to Local Watermark]/myImage.jpg '
+ '-filter_complex "overlay=10:10" '
+ RNFS.ExternalStorageDirectoryPath + '/videos/outVideomp4';

    



    I hope someone has an solution for me. Thanks