Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (110)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

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

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

Sur d’autres sites (16555)

  • FFmpeg capturing 1 FPS thumbnails

    30 juin 2019, par Gediminas

    I’m trying to programmatically export a series of thumbnail images (one image per-second) I’m not worried about the actual footage conversion and image file creation. My interest is in how would it be better to capture a valid 1 fps frame. (with no artifacts)

    This is possible using FFmpeg’s command line like this :

    ffmpeg -i test.mp4 -vf fps=1 out%d.png

    So while looking at the FFmpeg’s source code I’ve noticed that it’s using a thing called filters. While filters can do a lot of cool stuff, I’m not sure if using those wouldn’t be too much of an overhead for a relatively simple task like this ?

    I mean, while using filters, to get a correctly decoded frame (with no artifacts) FFmpeg still needs to decode all frames contiguously anyway ? So maybe in my situation it’s better to not use filters and decode frames contiguously while monitoring frame’s PTS ?

  • doc/APIchanges : document newly added buffersrc field

    11 janvier 2024, par Niklas Haas
    doc/APIchanges : document newly added buffersrc field
    

    This was accidentally removed in a prior revision of the series,
    alongside the corresponding (separate) version bump. Instead coalesce it
    into the follow-up commit's entry, since that's the lowest version
    actually supporting the new fields.

    • [DH] doc/APIchanges
  • Get x264 options from stream

    29 juillet 2014, par HardRock

    I have a problem with H264 encoding, actually with libx264 :(

    I want to encode series of images from web camera into h264 and send stream to chines DVR. Problem is DVR can’t decode my stream. I tried to adjust (using h264stream_analyzer) SPS and PPS in libx264 to match SPS and PPS headers from "correct stream", produced by other chinese DVR’s and IP cameras. But no luck :( Looks like problem in bitstream.

    My stream and "correct" stream - are both may be converted and played with avconv (ffmpeg), for example.
    Transport is ok. If i send "correct stream" - DVR understand it. Problem in stream.

    One strange thing - "correct stream" contains a lot of 28 and 29 slice types. From h264 specification this is must be "fragmentation" units. But my stream contains only P and I slices, но fragmens.

    So how i can get exact stream encoding parameters from existing sample stream ? It may be difference in x264 versions ?