Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (85)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • 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"

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (5567)

  • 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 Limit File Size

    18 décembre 2014, par Ben Marinic

    I am converting MPGs into GIF files using ffmpeg. I need to limit the output to 2MB max as this is the maximum GIF size supported on the server. I have tried the -fs switch, however this chops off the video to fit the size. I would rather have the GIF scaled and the quality adjusted. The source videos are limited to 5 seconds, so I’m not trying to fit a video with particularly long duration into a small GIF file size. Some solutions I have seen include checking the file size after conversion, deleting if too large and trying again with modified properties until the desired file size is reached. Is there a more automated approach I could take with ffmpeg ?

  • Limit file size in FFmpeg

    26 novembre 2019, par Arete

    The official documentation for FFmpeg says :

    -fs limit_size (output)

    Set the file size limit, expressed in bytes. No further chunk of bytes is written after the limit is exceeded. The size of the output file is slightly more than the requested file size.

    This is very confusing. If the file size is slightly more than the requested file size then I have the following questions :

    1. What determines how much more (than the requested file size) the file will consume ?

    2. How much more will the file exceed the requested file size ?

    3. Is there any way to set the file size exactly ?

    4. What is the point of having the -fs if it does not actually work ?