Recherche avancée

Médias (91)

Autres articles (38)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6644)

  • libav gives audio duration as negative

    5 novembre 2016, par Amit

    I am trying to make a simple av player, and in some cases I am getting values correctly as below :

    checking /media/timecapsule/Music/02 Baawre.mp3
    [mp3 @ 0x7f0698005660] Skipping 0 bytes of junk at 2102699.
    dur is 4396400640
    duration is 311

    However, in other places, I am getting negative durations :

    checking /media/timecapsule/Music/01 Just Chill.mp3
    [mp3 @ 0x7f0694005f20] Skipping 0 bytes of junk at 1318922.
    dur is -9223372036854775808
    duration is -653583619391

    I am not sure what’s causing the duration to end up negative only in some audio files. Any ideas to where I might be wrong are welcome !

    Source code here https://github.com/heroic/musika/blob/master/player/library.c

  • what parameters for SD ?

    6 janvier 2015, par SledgehammerPL

    I have this :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'film.mp4':
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: mp42mp41
       creation_time   : 2013-07-09 17:41:04
     Duration: 00:00:15.04, start: 0.000000, bitrate: 6132 kb/s
       Stream #0.0(eng): Video: h264 (Main), yuv420p, 1280x720 [PAR 1:1 DAR 16:9],                                                               5951 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc
       Metadata:
         creation_time   : 2013-07-09 17:41:04
       Stream #0.1(eng): Audio: aac, 48000 Hz, stereo, s16, 189 kb/s
       Metadata:
         creation_time   : 2013-07-09 17:41:04

    and want to down quality to standard PAL - how to do with ffmpeg/avconv ?

  • how to call avconv via shell_ exec in php ?

    8 janvier 2018, par Blurry Script

    when I call a command to convert video from console linux its all working, but when I call the same command from shell_exec in php, it gives no errors it returns nothing.

    even tough I added sudo 2>&1 to redirect the output, for example this command :

    $res = shell_exec("avconv -i film.mkv 2>&1");
    echo $res //nothing
    exit;