Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (105)

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

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

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

  • ffmpeg causes browser to hang up ?

    24 juillet 2012, par Itai Sagi

    I'm using ffmpeg to convert videos on the fly, as they say, and I'm facing with a very annoying, unsolvable and unreferenced problem (as of yet ;) ), when I run my php script, it basically works - takes the file, uses ffmpeg, starts converting it, but halway through it's finished, the browser hangs, I don't understand why or how to resolve it :
    (even with set_time_limit the bastard won't work).

    function convertToMp4(){
       /*
        * Converts a file to mp4, returns the new file name
        */
       set_time_limit(0);
       $tmpFile = $this->fileName;
       $newFile = uniqid();
       $outputFile = "output/$justFile.mp4";
       exec("ffmpeg -i " . $tmpFile . " -acodec copy -ar 44100 -ab 96k " . $outputFile. " &");
       unlink($tmpFile);
       return $outputFile;
    }

    Ideas ?

  • ffmpeg aac encoder shows "Input contains (near) NaN/+-Inf"

    26 janvier 2021, par zzzzzz

    here's a question.
When my code goes to ret = avcodec_send_frame(enc_ctx, tmpFrame), sometimes it returns AVERROR(EINVAL). Many people say that the reason is the format of tmpFrame is AV_SAMPLE_FMT_S16, but encoder needs AV_SAMPLE_FMT_FLTP. However, my log shows that tmpFrame->format: 8, tmpFrame->channels: 1, tmpFrame->channel_layout: 4, tmpFrame->sample_rate: 32000, tmpFrame->nb_samples: 1024. Here 8 is the value of AV_SAMPLE_FMT_FLTP.

    


    So what is the reason of this bug ?

    


  • FFMPEG can not load frei0r plugins via environment path on windows 10

    23 janvier 2018, par sam rolfe

    This works fine on windows 7 - however on windows 10 mo matter what I try FFMPEG can not load the .dll file.

    In debug mode it shows me that it is reading the correct environment path - however it is unable to find the file on that path - its so strange.

    Looking for frei0r effect in ’C :\freior/edgeglow.dll’

    I have tried with all manner of folders, names, slashes, etc - it always returns

    Could not find module ’edgeglow’

    I am wondering of there is some sort of user permissions ? Something is blocking it.