Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (77)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6714)

  • FFprobe or FFMpeg Get length of file in special time

    27 septembre 2016, par mohsen nayyeri

    I want to get start bit of video file.

    Example :
    Output of FFmpeg

    frame=  199 fps= 24 q=25.0 size=    2919kB time=00:00:09.92
    bitrate=2410.3kbits/

    I have time and i want to give size.
    I want to get start bit size from time. In this example i have time=00:00:09 and i want give 2919kB.

    Please help me.

  • doc/libav-merge : create a special "extra changes" section

    22 mars 2017, par Clément Bœsch
    doc/libav-merge : create a special "extra changes" section
    
    • [DH] doc/libav-merge.txt
  • fftools/ffmpeg : add special syntax for loading filter options from files

    19 janvier 2023, par Anton Khirnov
    fftools/ffmpeg : add special syntax for loading filter options from files
    

    Many filters accept user-provided data that is cumbersome to provide as
    text strings - e.g. binary files or very long text. For that reason such
    filters typically provide a option whose value is the path from which
    the filter loads the actual data.

    However, filters doing their own IO internally is a layering violation
    that the callers may not expect, and is thus best avoided. With the
    recently introduced graph segment parsing API, loading option values
    from files can now be handled by the caller.

    This commit makes use of the new API in ffmpeg CLI. Any option name in
    the filtergraph syntax can now be prefixed with a slash '/'. This will
    cause ffmpeg to interpret the value as the path to load the actual value
    from.

    • [DH] Changelog
    • [DH] doc/filters.texi
    • [DH] fftools/ffmpeg_filter.c