Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (50)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4639)

  • How to detect a common scene in a set of videos with ffmpeg

    6 août 2019, par Hans J

    I have a set of videos that are assumed to contain a common (or very similar) scene. I want to be able to detect (with FFmpeg) what that common scene is, how long the scene is, and where the scene is in each individual video.

    The scene would be assumed to be longer than 10 seconds (This is an arbitrary choice, it can be changed).

    The final output of the command would include the various time-codes of the instance of the scene in each video. Assuming a timebase 1/1, with a common scene that is 60 seconds long, an output would along the lines of :

    Video1.mp4 0 60
    Video2.mp4 120 180
    Video3.mp4 50 110
    Video4.mp4 null

    where video4 does not contain any common scene.

    For example, I could have three episodes of a TV show. They all contain the same commercial. Without knowing what that commercial is, I want to be able to find where that commercial shows up in each of the episodes.

    Note : For the purpose of a good solution, the common scenes do not have to exactly match. Because there could be artifacts or embedded subtitles in one episode and not the other.

  • lavfi/vaapi : Factorise out common code for parameter buffer setup

    31 mars 2019, par Mark Thompson
    lavfi/vaapi : Factorise out common code for parameter buffer setup
    

    Also enables cropping on all VAAPI filters, inherited from the existing
    support in scale_vaapi.

    • [DH] libavfilter/vaapi_vpp.c
    • [DH] libavfilter/vaapi_vpp.h
    • [DH] libavfilter/vf_deinterlace_vaapi.c
    • [DH] libavfilter/vf_misc_vaapi.c
    • [DH] libavfilter/vf_procamp_vaapi.c
    • [DH] libavfilter/vf_scale_vaapi.c
    • [DH] libavfilter/vf_transpose_vaapi.c
  • avcodec/ffv1dec_template : Optimize common case in run mode

    23 mai 2019, par Michael Niedermayer
    avcodec/ffv1dec_template : Optimize common case in run mode
    

    Fixes : Timeout (14sec -> 9sec)
    Fixes : 13398/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFV1_fuzzer-5664106709778432

    decode_line() becomes 1% faster for fate/vsynth2-ffv1.avi
    for another fate sample there is a 0.5% speedup
    the effect should be bigger for files with "flat" colored areas
    the new faster branch is used in 97-100% of the cases in fate samples
    compared to the older more complex (which i tested)

    vsynth3-ffv1-v3-bgr0.avi had the lowest percentual useage of about 97%

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ffv1dec_template.c