Recherche avancée

Médias (91)

Autres articles (39)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

  • dxva2 : Increase maximum number of slices for mpeg2

    6 mars 2014, par Rainer Hochecker
    dxva2 : Increase maximum number of slices for mpeg2
    

    Some content requires an higher number of slices in order to
    render properly.

    Rise the number to 1024 and warn if ever it exceeds.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] libavcodec/dxva2_mpeg2.c
  • the number of frames in ts file

    12 juin 2017, par j.teak

    i got video data from my web camera, and using ffmpeg to make ts, m3u8

    but ts what made by ffmpeg, each ts has different the number of frames.

    so, how can i make the number of frames equally ?

    and each gop size in ts are also different..

    how can i make gop size is constant ?

    avformat_alloc_output_context2(&amp;ptr->hls_ctx, NULL, "hls", "hls.m3u8");
    ((HLSContext*)ptr->hls_ctx->priv_data)->flags = HLS_DELETE_SEGMENTS | HLS_ROUND_DURATIONS;
    ((HLSContext*)ptr->hls_ctx->priv_data)->max_nb_segments = 2;
    ((HLSContext*)ptr->hls_ctx->priv_data)->time = 2;

    i already use time parameter for setting ts’s play time

  • OpenCV 4.5.2 VideoWriter produces “can't find starting number” error

    28 avril 2021, par Peter Kronenberg

    There are several issues with similar names, but none of them seem to have a definitive answer. Using the last version of OpenCV 4.5.2 with Java on Windows 10. Below is a short reproducible test case which results in

    &#xA;

    [ERROR:0] global C:\build\master_winpack-bindings-win64-vc14-static\opencv\modules\videoio\src\cap.cpp (589) cv::VideoWriter::open VIDEOIO(CV_IMAGES): raised OpenCV exception:&#xA;&#xA;OpenCV(4.5.2) C:\build\master_winpack-bindings-win64-vc14-static\opencv\modules\videoio\src\cap_images.cpp:253: error: (-5:Bad argument) CAP_IMAGES: can&#x27;t find starting number (in the name of file): C:/testfiles/output.avi in function &#x27;cv::icvExtractPattern&#x27;&#xA;

    &#xA;

    Here is the code :

    &#xA;

    public class OpenCVError {&#xA;&#xA;    public static void main(String[] args) {&#xA;        System.loadLibrary(Core.NATIVE_LIBRARY_NAME);&#xA;&#xA;        final int fourcc = VideoWriter.fourcc(&#x27;m&#x27;, &#x27;j&#x27;, &#x27;p&#x27;, &#x27;g&#x27;);&#xA;        final double fps = 30.00;&#xA;        Size frameSize = new Size(1080, 1920);&#xA;        VideoWriter videoWriter = new VideoWriter("C:/testfiles/output.avi", fourcc, fps, frameSize, true);&#xA;    }&#xA;}&#xA;

    &#xA;

    Update

    &#xA;

    Found out from https://forum.opencv.org/t/error-in-java-cant-find-starting-number-in-the-name-of-file/3014 that I seem to be missing opencv_videoio_ffmpeg452_64.dll&#xA;I am using the Maven distribution at

    &#xA;

      <dependency>&#xA;            <groupid>org.openpnp</groupid>&#xA;            <artifactid>opencv</artifactid>&#xA;            <version>4.5.1-2</version>&#xA;  </dependency>&#xA;

    &#xA;

    which doesn't appear to have this file. I tried adding the file to my classpath (using IntelliJ), but it still doesn't seem to work.

    &#xA;

    Anyone have any ideas ? Why isn't this file part of the openpnp distribution ?

    &#xA;