Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (61)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (2824)

  • OpenCV videowriter H264 codec (ffmpeg)

    29 décembre 2014, par alcon

    I want to save a video with opencv with lossless compresion so I don’t lose any details of the frames. Everything works with the xvid codec but offcourse this is not a lossless compression so I found that the x264 codec is suitable. However it doesn’t work, I tried the following sample code but while running I get the following error : "could not find encoder for codec id 28 : encoder not found."

    cv::VideoWriter makeVideo;
    makeVideo.open("makevideo//newVideo.mp4", CV_FOURCC('X','2','6','4'), 30, cv::Size(1600,1200), true);
    cv::Mat image = imread("makevideo//frames//111.png");

    for(int i = 0; i < 200; i++)
       makeVideo << image;

    makeVideo.release();

    I found that for this to work, I need to have ffmpeg support. I’m currently using opencv2.4.6 and in this discussion (how can I use the openCV FFMPEG video I/O rather than the DirectShow one in Windows ?) someone mentioned that in opencv2.4 ffmpeg is automatically included. But its not working....

    Here (How to compile OpenCV 2.3 with ffmpeg support with Visual Studio 2010) I found how to compile opencv and ffmpeg yourself on windows. I followed all the steps sucessfully but still I get the same error....

  • avformat/matroska(dec|enc) : Rename macro to avoid clash with winbase.h

    31 août 2023, par Andreas Rheinhardt
    avformat/matroska(dec|enc) : Rename macro to avoid clash with winbase.h
    

    winbase.h defines IGNORE and is included via bzlib.h when compiling
    for Windows. So rename this macro to NOTHING.
    Also rename the muxer macro for consistency.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/matroskadec.c
    • [DH] libavformat/matroskaenc.c
  • avisynth : Support video input from AviSynth 2.5 properly.

    16 août 2013, par Stephen Hutchinson
    avisynth : Support video input from AviSynth 2.5 properly.
    

    Uses the 2.5 compatibility header included with the variant of
    FFMS2 that uses AviSynth’s C-interface. A copy of this header is
    now provided in compat/avisynth.

    avs_get_row_size_p and avs_get_height_p changed between versions
    2.5 and 2.6. Since the avisynth_c.h header that avformat uses
    assumes AviSynth 2.6, it would cause 2.5 to crash if given any
    kind of real video (the Version() function was known to work,
    though).

    AvxSynth was unaffected by this issue because, despite being based
    on AviSynth 2.5.8 and using 2.5.8’s interface version number of 3,
    it actually uses 2.6’s versions of these functions.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] compat/avisynth/avisynth_c_25.h
    • [DH] libavformat/avisynth.c