Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (57)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (12595)

  • mov : Compare frag times in correct time base when seeking a stream without a correspo...

    17 mai 2022, par Derek Buitenhuis
    mov : Compare frag times in correct time base when seeking a stream without a corresponding sidx
    

    Some muxers, such as GPAC, create files with only one sidx, but two streams
    muxed into the same fragments pointed to by this sidx.

    Prevously, in such a case, when we seeked in such files, we fell back
    to, for example, using the sidx associated with the video stream, to
    seek the audio stream, leaving the seekhead in the wrong place.

    We can still do this, but we need to take care to compare timestamps
    in the same time base.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/mov.c
  • How to batch generate EDL (edit decision list) files for a folder of videos with different run times

    22 janvier, par DnK

    How to batch generate EDL (edit decision list) files for a folder of videos with different run times ? I need to skip exact amount of seconds from the start and another amount of seconds from the end. All the videos have different runtimes I can make EDL files for skipping the intro but need a way to read the video runtime and skip the last 60 or 90 seconds.

    &#xA;

    This is the format for the EDL I am using with kodi

    &#xA;

    0:00:00   0:01:20.    3&#xA;

    &#xA;

    So if the video is 40 mins 30 seconds the EDL generated skipping 80 seconds from the start and 90 seconds from the end should be

    &#xA;

    0:00:00   0:01:20.    3&#xA;0:39:00   0:40:30.    3&#xA;

    &#xA;

    More info about kodi EDL

    &#xA;

    https://kodi.wiki/view/Edit_decision_list

    &#xA;

  • Can ffmpeg be used multiple times at the same time ? (Image converting) [on hold]

    28 août 2017, par Mikael Danielson

    I’m developing a community website in php where a lot of picture formats will be converted to jpg files.

    Can ffmpeg be used by 10 - 100 users at the same time ?

    How is ffmpeg performing if you compare it to phps own image converter imagejpeg() ; ?