Recherche avancée

Médias (91)

Autres articles (79)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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

Sur d’autres sites (11477)

  • Anomalie #2352 (Nouveau) : aide inaccessible lors de l’install

    29 septembre 2011, par denisb -

    spip3. lors de l’install, à l’étape 2 ("Choix de votre base") le bouton d’aide renvoie sur la première page de l’install ("Sélectionnez une langue puis cliquez sur le bouton « suivant » pour lancer la procédure d’installation.") puisque le site n’est pas encore installé... idem pour l’étape 3 ("Le (...)

  • HTML5 video in Internet Explorer

    26 juin 2012, par Jamie Taylor

    I have 3 copies of a video :

    Raw AVI

    Encoded .mp4 (h.264 video and mp3 audio)

    Encoded .ogv, encoded with oggtheora

    My HTML 5 player runs in Firefox 14, Chrome 19 and Opera 12, it fails however in, you guessed it.. Internet Explorer 9. As far as I know the h.264 file should be picked up and play, however it's not.

    <video class="vid" width="550" height="400" controls="controls">
       <source src="test/charlie.mp4" type="video/mpeg"></source>
       <source src="test/charlie.ogv" type="video/ogg"></source>
       Nope.
    </video>

    Any ideas ?

    And please take this picture as a sign of my gratitude

    rageface

    For whoever asked and then deleted their comment :

    htdocs/html5$ ls
       index.php  test
    htdocs/html5/test$ ls
        charlie.avi  charlie.mp4  charlie.ogv
  • Use FFMPEG in OpenCV without internet connection

    17 novembre 2022, par Henalds

    I am creating a project in c++ with QtCreator (5.14.1, MingGW compiler) and trying to use OpenCv (3.4.16) to read video files. I have tried many files of standard formats and codecs (H.264, yuv420, .mov etc). However, no matter what I try, VideoCapture() always silently fails. It doesn’t crash or show any error code, instead isOpened() is just always false.

    &#xA;

    I think the cause is that I am building opencv (via this tutorial https://wiki.qt.io/How_to_setup_Qt_and_openCV_on_Windows) without internet connection (I cannot have internet connection on this machine, so please do not ask me to) and therefore it can’t download the FFMPEG libraries during this process. I have been looking everywhere for information about how to download the FFMPEG libraries for opencv directly but I haven’t had any luck.

    &#xA;

    Can someone please explain what libraries I need to download and how opencv goes about looking for them ? because at the moment I don’t know what I need, nor where to put them, and I cant find any information on the topic.

    &#xA;

    Or, can someone explain why calling VideoCapture(“video.mov”, cv::CAP_ANY) doesn’t have any effect ? (despite being able to play the video easily in VLC, MediaPlayer etc).

    &#xA;

    Code :&#xA;`

    &#xA;

    int main()&#xA;{&#xA;    VideoCapture cap(“C://video.mov”);&#xA;    //VideoCapture cap(“C:/video.mov”);&#xA;    //VideoCapture cap(“C:\video.mov”);&#xA;    //VideoCapture cap(“C:\video.mov”);&#xA;&#xA;    if (!cap.isOpened()){&#xA;        cout &lt;&lt; "Error opening video stream or file"&lt;&lt; endl;&#xA;        return -1;&#xA;    }&#xA;}&#xA;

    &#xA;

    `

    &#xA;

    I have tried downloading some ffmpeg DLLs and the EXEs and adding them to the PATH, no success. I have also tried downloading the shared GPL of ffmpeg (that comes with the libs and include) and added them my .pro file but no change in VideoCapture behavior.

    &#xA;

    I have also tried moving the opencv_ffmpeg_64.dll (found in opencv/build/bin) to my executable directory but that didn't fix anything.

    &#xA;