Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9335)

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