Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (25)

  • 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 (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (2847)

  • What is wrong with this code ? Not working on Windows 10 / Ubuntu 14

    3 avril 2017, par Somename

    Trying to convert a .gif to .mp4 :

    var express = require('express');
    var bodyParser = require('body-parser');
    var app = express();
    var ffmpeg = require('fluent-ffmpeg');  

    var proc = new ffmpeg({ source: 'myfile.gif' })
     .withAspect('4:3')
     .withSize('640x480')
     .applyAutopadding(true, 'white')
     .saveToFile('myfile.avi', function(stdout, stderr) {
       console.log('file has been converted succesfully');
     });

    app.listen(3000, function() {  
       console.log("Server Running on 3000");
    });

    Getting the same error on Windows 10 and Ubuntu 14 : Error: Cannot find ffmpeg.

    What is wrong with the code ? Please help.

  • configure : Disable inline assembly with nonlocal labels with LTO on Clang on Windows

    20 décembre 2023, par Martin Storsjö
    configure : Disable inline assembly with nonlocal labels with LTO on Clang on Windows
    

    The file libavcodec/x86/mlpdsp_init.c uses inline assembly with
    nonlocal labels that are referenced outside of the assembly in C.
    This fails to link with LTO when built with Clang when targeting
    Windows.

    The root cause has been reported upstream at
    https://github.com/llvm/llvm-project/issues/76046.

    Fixes : https://trac.ffmpeg.org/ticket/10548
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure
  • OpenCV 3.2 + Python 2.7 + Windows 7 GETTING STARTED

    8 mai 2017, par Arantxa

    I’m having several problems to start working with OpenCV and Python in a Windows environment.

    After doing many of the instructions given on the internet, I haven’t found the correct way yet.

    I was wondering to use Highgui in order to do image processing. But after opening the camera, the frame is totally black, I tried to put the ffmpeg codecs correctly but it looks like it wasnt because of that, so I tried to save a frame just to see if the frame was totally empty too, and I can’t use cv2.SaveImage() method, because, as it says, ’module’ object has no attribute ’SaveImage’

    I have tried to :

    • Install it with Anaconda. After no success...I
    • Install OpenCV from Sourceforge, and after that copy the cv2.pyd file inside Pyton27/Lib/site-packages/
    • Install the next packages from Python oficial page :
      • opencv-python
      • opencv-contrib-python

    How do you use OpenCV with Python ?