Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (89)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

Sur d’autres sites (7546)

  • Pure C-Code of x264 of ffmpeg

    21 septembre 2015, par Codec Guy

    I am doing some hardware implementation on Ratecontrol of FFMPEG. I am using x264 Encoder, here I am not able to find the C-Code implementation of this function intra_mbcmp_x3_8x8c.

    I tried to trace it back wards, but there is only assembly implementation of the code. Can some body please guide to the Pure C-implementation of the latest x264.

    It would also be helpful, if someone helps me in disabling x86 flags in FFMPEG, so that I will be able to run the pure C implementation.
    Note:I have checked a similar question here.
    But I was not able to get my answer.

  • Use argument shortest in C++ code in FFMPEG

    7 juillet 2021, par Little Max

    I need to set up the argument "-shortest" but in c++ code. I know that I can set up an argument with value for example :

    


     av_opt_set(codecContext, "crf", "28", 0);


    


    But here is the thing, there is a value, but in shortest no value.
So how can I set up shortest in c++ code

    


    Thanks in advance

    


  • ffmepg binarys can't be implemented in the code

    2 janvier 2016, par yoko

    I am using ffmpeg and C# in my project. I want to write the frames I have imported into a new video. The Problem is, as soon as I want to create a new instance of the VideoFileWriter class, which is delivered by the AForge.Video.FFMPEG namespace, I get a FileNotFoundException (while runtime) :

    System.IO.FileNotFoundException" in System.Windows.Forms.dll

    So, I have researched, and some sourced claim that you need not only to import the dll’s into your project, but also in your output folder(like this one)
    I did it, it did not help either.

    I have already taken a look, I have imported all dll’s into my project, and I have set up their location in the PATH-Variables (And yes, restarted.)

    The Codeline, which is throwing the Exception is the following

    VideoFileWriter writer = new VideoFileWriter();

    anyone else had this Problem or knows a solution ?