Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (73)

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

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

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

Sur d’autres sites (10403)

  • Why menconder fps rate does not work ?

    2 mars 2016, par ACR

    I’m using mencoder to create a video out of some .png files. The problem is that the frame rate doesn’t change, regardless of the -fps flag. The output video has different time lengths (in their properties), but the video’s size and speed are always the same (regardless of the FPS chosen).

    I just want to create a shorted video by using higher FPS rates. In short, a "time-lapse" of my original set of images. What am I doing wrong with mencoder ? I’m using the following command :

    mencoder mf://./IMG/images*.png -mf w=800:h=600:fps=20:type=png -ovc copy -oac copy -o video.avi
  • Cannot get ffmpeg2.3.3 to work with Opencv2.4.9

    6 septembre 2014, par Siddharthan P R

    I need to open a video file in opencv2.4.9. I used the following code and I got the output :
     !!! Sorry cant find the video file !!!.

    So I figured I need to install ffmpeg first then install opencv.
    So I Uninstalled opencv and ffmpeg then tried to install ffmpeg 2.3.3 properly.
    Here are the methods i tried to install ffmpeg.

    Method 1 :
    sudo apt-get install ffmpeg.

    Method 2 :
    Download (HTTP) : http://ffmpeg.org/releases/ffmpeg-2.3.3.tar.bz2

    Then i typed the following in the terminal after cd to the extracted folder.

    sed -i 's/-lflite"/-lflite -lasound"/' configure &&

    ./configure --prefix=/usr        \
               --enable-gpl         \
               --enable-version3    \
               --enable-nonfree     \
               --disable-static     \
               --enable-shared      \
               --disable-debug      \
               --enable-libass      \
               --enable-libfdk-aac  \
               --enable-libmp3lame  \
               --enable-libtheora   \
               --enable-libvorbis   \
               --enable-libvpx      \
               --enable-libx264     \
               --enable-x11grab     &&
    make &&
    gcc tools/qt-faststart.c -o tools/qt-faststart

    Though Method 1 works fine (in just installing ffmpeg), the problem with Method 1 is that i cannot use "./configure —enable-shared" anywhere because i cannot locate the file "configure".

    The problem with method 2 is that it says

    -ERROR: libass not found, after installing libass it says

    -ERROR: libfdk-aac-0.1.3 not found, then

    -ERROR: lame-3.8 not found, then

    -ERROR: libtheora not found, here i really got tired of installing all these packages. I stopped.

    I am really confused how to pull this off : with Method 1 or Method 2 (both seem not to work ). Can i change the ./ configure using method 1 ?

    Any help would be greatly appreciated.

               #include
               #include

               int main(int argc, char** argv)
               {
                   cvNamedWindow("xample2", CV_WINDOW_AUTOSIZE);
                   CvCapture* capture = cvCreateFileCapture( "1.mp4" );
                   if (!capture)
                   {
                     std::cout << "!!! Sorry cant find the video file !!!\n";
                     return -1;
                   }

                   IplImage* frame;
                   while (1)
                   {
                       frame = cvQueryFrame(capture);
                       if(!frame)
                           break;

                       cvShowImage("xample2", frame);

                       char c = cvWaitKey(33);
                       if (c == 27)
                           break;
                   }

                   cvReleaseCapture(&capture);
                   cvDestroyWindow("xample2");
               }
  • vp8 : fix PPC assembly and bilinear C code to work if src_stride != dst_stride.

    23 septembre 2013, par Ronald S. Bultje
    vp8 : fix PPC assembly and bilinear C code to work if src_stride != dst_stride.
    

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

    • [DH] libavcodec/ppc/vp8dsp_altivec.c
    • [DH] libavcodec/vp8dsp.c