Recherche avancée

Médias (91)

Autres articles (97)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8369)

  • ffmpeg How to Conver Video 2D to side by side [on hold]

    15 décembre 2015, par Peace Michael

    i want convert video from 2D to side by side using FFMPEG.i hope anyone can help me .Thank you .Sorry for my bad english

  • Looking for technical details about X265 encoding and decoding

    10 décembre 2015, par Sitoumbaz

    I’am working on x265, Is there some one who can you share with me how did I encode yuv using x265 codec ? I Need to know how do you get pixel encoded from picture_out structure, And can you tell me if this code is good ? Hope get solution from you ! I’am using the x265 api documentation but it is less understandable.

    ret = x265_encoder_encode(encoder, pp_nal, &pi_nal, pic_in, pic_out);
    if(ret < 0){

       printf("encodePictureIn, Error in x265_encoder_encode %d\n",ret);
       return ret;
    }

    do{

       ret = x265_encoder_encode(encoder, pp_nal, &pi_nal, NULL, pic_out);
       printf("...\n");

    }while(ret > 0);
  • Bash while loop wait until task has completed

    30 juillet 2015, par macmichael01

    I have a bash script that I created to process videos from within a folder and it’s subfolders :

    find . -type f -name '*.mkv' | while read file;
    do
     ffmpeg -i $file ...
    done

    The problem : Instead of the while loop waiting ffmpeg to complete, it continues iterate through the loop. The end result is, files not getting processed. I need a way to have the current while loop iteration to wait until ffmpeg is complete before continuing to the next. Or alternatively a way to queue these items.

    Edit : So The solution when iterating over a set of files is to pass the -nostdin param to ffmpeg. Hope this helps anyone else who might have a similar issue.

    Also file —> $file was a copy/paste typo.