Recherche avancée

Médias (91)

Autres articles (67)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • The final request has incomplete range header while streaming webm using shaka player

    3 mai 2019, par Jane

    I’m streaming a webm file using shaka player.
    While streaming using shaka player the last cluster is not fetched because the range header in the request is in complete. It looks like this :
    range: bytes=9511454-
    What should I change to get a complete range header from shaka player ?

    I followed the procedure shown here for encoding the video and audio files and generating the manifest file. In addition to this, I encoded the video file using ffmpeg before running it through mkvmuxer_sample.

  • swscale : Take the destination range into account for yuv->rgb->yuv conversions

    18 février 2022, par Martin Storsjö
    swscale : Take the destination range into account for yuv->rgb->yuv conversions
    

    The range parameters need to be set up before calling
    sws_init_context (which selects which fastpaths can be used ;
    this gets called by sws_getContext) ; solely passing them via
    sws_setColorspaceDetails isn't enough.

    This fixes producing full range YUV range output when doing
    YUV->YUV conversions between different YUV color spaces.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libswscale/utils.c
    • [DH] tests/fate/libswscale.mak
    • [DH] tests/ref/fate/sws-yuv-colorspace
    • [DH] tests/ref/fate/sws-yuv-range
  • ffmpeg : video from images - handling a zero length image file

    29 septembre 2021, par Buadhai

    I have a shell script which uses ffmpeg to crate a time-lapse video from webcam images. Normally, it works just fine :

    &#xA;

    /usr/bin/ffmpeg -loglevel info  -framerate 4 \&#xA;     -pattern_type glob -i $ipath/&#x27;*.jpg&#x27; \&#xA;    -c:v libx264 -crf 30 -y -pix_fmt yuv420p $temp &amp;>>$log&#xA;

    &#xA;

    But this chokes if the image is a zero-length file :

    &#xA;

    -rw-r--r-- 1 pi pi  156636 Sep 29 04:35 image_022.jpg&#xA;-rw-r--r-- 1 pi pi  156533 Sep 29 04:35 image_023.jpg&#xA;-rw-r--r-- 1 pi pi  159302 Sep 29 04:35 image_024.jpg&#xA;-rw-r--r-- 1 pi pi       0 Sep 29 04:35 image_025.jpg&#xA;-rw-r--r-- 1 pi pi  157055 Sep 29 04:35 image_026.jpg&#xA;-rw-r--r-- 1 pi pi  156851 Sep 29 04:35 image_027.jpg&#xA;-rw-r--r-- 1 pi pi  155793 Sep 29 04:35 image_028.jpg&#xA;-rw-r--r-- 1 pi pi  160647 Sep 29 04:35 image_029.jpg&#xA;

    &#xA;

    In this case the video only included frames up to the zero length JPEG.

    &#xA;

    I realize I can test the file length of every webcam image, but there must be an easier, more efficient way.

    &#xA;

    Is there ?

    &#xA;