Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (29)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6531)

  • Revision 4230c2306c : Fixed calling of highbd transform. This patch does not change behaviour because

    22 octobre 2014, par Peter de Rivaz

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Fixed calling of highbd transform.

    This patch does not change behaviour because
    vp9_fwht4x4 is identical to vp9_highbd_fwht4x4,
    but it becomes important when accelerations are made
    to vp9_highbd_fwht4x4 in a later patch.

    Change-Id : I2b790316cdd498727c4951a9e591edb291de3ac8

  • Font size messes up when I try to hardsub

    7 septembre 2020, par かかし9000

    I have used the following command for a hardsub and everything worked but the subtitle size increased :

    


    ffmpeg -vsync 0 -i input.mkv -vf "ass=subs.ass" -c:a copy -c:v h264_nvenc -b:v 700k final.mp4


    


    i used a srt type file before using ass but that command made the text size take up almost half the screen and the force_style filter shows it executed properly but there was no change in text size at all

    


    though the ass sub style gets me a proper subtitle size i'd very much like it if the size was appropriate

    


  • ffmpeg some frames are skipped or not getting visible

    20 décembre 2018, par pooja modi

    I am changing frames in every second of video, But some of them are getting glitched or not getting visible properly. My all frames are .png files and all of them are being made properly can’t figure out what is the problem.
    Here, I am mention command for FFmpeg :

     String[] complexCommand = {"-y", "-i", videoPath, "-framerate",  "1", "-i", inputfile + "/" + "datetime%d" + ".png", "-filter_complex", "[0:v]scale=" + width + ":" + height + "[bg];[i]fps=25[i];[bg][1:v]overlay=(0+" + Height + "):(main_h-overlay_h-" + Width +")", "-preset", "ultrafast", outputfile};