Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (77)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (9557)

  • Default Pixel Format For FFMPEG For Encoding an Image Stack To Movie

    11 septembre 2017, par JMevorach

    If one was converting a stack of images to a .mp4 with FFMPEG using libx264 to encode h.264 video and one didn’t specify a pixel format in the call to FFMPEG is the default pixel format YUVJ420 ? I’ve been doing some experiments and have been getting results identical to if I specified YUVJ420 for my format versus if I specify no format.

  • How can I fill skipped video frames of a movie with duplicated frames using ffmpeg ?

    28 août 2017, par Aviv Sharon

    I have an avi movie that contains some skipped frames (can be easily seen with virtual dub, that it duplicates them to the previous frame).
    My question is how can I use ffmpeg tool to convert a movie to be the same, just to fill the skipped frames with the previous ones, without changing the compression, using the very same source frames.
    I know there is a "-vsync cfr" option that works when re-encoding ("-vcodec [some codec]"), and there is "-vcodec copy", which maintains the codec and quality. However, these 2 ("-vsync cfr -vcodec copy") are not working together. In such case, the output video is the same as the input video (bit-exact).

    Any clue how can I do it ? Thanks

  • yuv422 to jpeg conversion using ffmpeg in VC++ 2010

    18 juillet 2017, par user3743908

    i am trying to convert yuv422 raw image in to jpeg or bmp format.
    plz suggest starting point,

    i have done following.

    I have build all the ffmpeg libraries on windows platform for VC++2010.

    i know how to convert them using windows command prompt like

    "ffmpeg -s <imagesize> -pix_fmt uyvy422 -i <input />
    </imagesize>

    but need to do in VC++2010

    i have run sample code (below) which use the ffmpeg libraries without any error.

    main()
    {
    av_register_all();
    AVFormatContext *pFormatCtx =NULL;
    return 0;
    }

    dono how to read, write and format convert for an image file...

    Regards

    kaushal