Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (57)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (4799)

  • Getting FFProbe Information With Python

    5 septembre 2012, par Robin Hood

    I've been attempting to figure this out for forever now (I'm new to programming) and I can't figure it out.

    I'm attempting to build a script that will test the file, and give me output from which I can get information like "Audio Format" that I can then put into the filename. However, I can't even get the script to return any file info. I've hit a wall at inserting an input file...

    So at this point I just need help getting it to spit out info based on the argvs I've thrown in. Hopefully I'll be able to figure out how to parse the audio info from that.

    My attempt that seems to be close :

    #!/usr/bin/python
    import os, sys, subprocess, shlex, re
    from subprocess import call
    def probe_file(filename):
       p = subprocess.Popen(['/opt/local/bin/ffprobe', '-show_format', '-pretty', '-loglevel quiet', -i filename], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
       print filename
       print p.communicate()
    [probe_file (f) for f in os.listdir('.') if not f.startswith('.')]
  • avformat/matroskadec : Typos, nits and cosmetics

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Typos, nits and cosmetics
    

    Cosmetics include reordering EbmlType so that EBML_SINT is adjacent to
    the other numbers (and matches the order in the switch in ebml_parse)
    and also reordering the switch for assignment of default values so that
    it matches the order in EbmlType.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskadec.c
  • ffmpeg thumbnails in equal intervals

    29 juin 2013, par user2392940

    my current code

    $file= "C:/wamp/www/as.mp4";
    $ffmpeg = "C:/wamp/bin/ffmpeg/bin/ffmpeg";

    ob_start();
    passthru("$ffmpeg -i ".$file." 2>&amp;1");
    $duration = ob_get_contents();
    ob_end_clean();

    $search=&#39;/Duration: (.*?)[.]/&#39;;
    $duration=preg_match($search, $duration, $matches, PREG_OFFSET_CAPTURE);
    $duration = $matches[1][0];
    list($hours, $mins, $secs) = preg_split(&#39;[:]&#39;, $duration);
    $totaltime = $secs+($mins*60)+($hours*3600);

    $percent = round($totaltime/12);

    exec ("$ffmpeg -i $file -threads 1 -b 64k -f image2 -s 220x180 -vf fps=fps=1/$percent img%03d.jpg");

    This code works perfectly if the total time/12 remainder is equal to or less than 60 seconds. The goal here is to make 12 thumbnails in equal intervals but ffmpeg will not allow more than 1 frame per 60 seconds any suggestions ?

    Thanks