Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (33)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

  • 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 (4658)

  • ffprobe : Dont clear AVFrame between uses.

    25 décembre 2013, par Michael Niedermayer
    ffprobe : Dont clear AVFrame between uses.
    

    The old API required this clearing in the past, the new API does not
    require it.

    Fixes memleak
    Regression introduced by 37a749012aaacc801fe860428417a6d7b81c103f

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] ffprobe.c
  • How to make `mktime` format with milliseconds ?

    20 septembre 2019, par Mantas Kildišis

    I need make 24 frames per second with PHP ffmpeg. This is current format of

    $t = mktime(0, 0, 0, 1, 1, 98);

    Later I use this function

    exec("/usr/local/bin/ffmpeg -ss " . date("H:i:s", $t) . " -i {$file} -f mjpeg -vframes 1 -s {$size} {$tmpfile}");

    In date("H:i:s", $t) I need make date("H:i:s.milliseconds", $t). This is not working date("H:i:s.u", $t) because of mktime format (hours, minutes, seconds, day. month, years) I guess.

    So, is it possible to add milliseconds to mktime ?

  • Cutting FLAC using ffmpeg does not change timestamps accordingly

    21 mars 2021, par George Tian

    I am using the following command to cut a FLAC file :

    &#xA;

    ffmpeg -i input.flac -ss 10s -t 10s -c copy output.flac

    &#xA;

    output.flac contains the correct duration of audio. However, all media players show its duration as the duration of input.flac.

    &#xA;

    The only other mention of this issue is an open ticket from 5 years ago.

    &#xA;

    How do I correct the timestamp of the output file ?

    &#xA;