Recherche avancée

Médias (91)

Autres articles (83)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (7242)

  • Revision 30d8ba541e : multi-res : work around reference mismatch In some situations, believed to be an

    8 octobre 2012, par John Koleszar

    Changed Paths : Modify /vp8/encoder/pickinter.c multi-res : work around reference mismatch In some situations, believed to be an interaction between temporal scalability and dropped frames, the references available to an encoder may not be the same references available to its parent. Previously, (...)

  • why transparent drawbox does not work on some video sources ?

    28 mai 2019, par Wang

    It works on smptebars, smptehdbars, testsrc and testsrc2 but not other sources.

    ffplay -loglevel trace -f lavfi -i testsrc=r=1:d=1:size=800x600 -vf "drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"

    When I try this I can see the transparent box. But if I use color, and rgbtestsrc sources it does not work.

    ffplay -loglevel trace -f lavfi -i rgbtestsrc=r=1:d=1:size=800x600 -vf "drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"
    ffplay -loglevel trace -f lavfi -i color=c=red:r=1:d=1:size=800x600 -vf "drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"

    after looking at the trace output, it seems the transparency only works on rgb24 and yuv formats (yuv444p, yuv420p, etc.), this is surprising since we normally assume the rgba source can work with alpha channel.

    The following command change the pix_fmt to rgb24, then it works :

    ffplay -loglevel trace -f lavfi -i rgbtestsrc=r=1:d=1:size=800x600 -vf "format=pix_fmts=rgb24,drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"

    The following command change the pix_fmt to rgba, then it does not work :

    ffplay -loglevel trace -f lavfi -i rgbtestsrc=r=1:d=1:size=800x600 -vf "format=pix_fmts=rgba,drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"

    Why is that ? and how can I fix this ?

  • Can't get FFMpeg to work with php

    15 octobre 2017, par casusbelli

    I’ve installed FFMpeg using composer on my Ubuntu LAMP 16.04 however I fail to make it work.

    I’m trying this simple code which make an instance of FFMpeg :

    $ffmpeg = FFMpeg\FFMpeg::create();
    $video = $ffmpeg->open('video101.MOV');

    However I get this error :

    Fatal error: Uncaught Error: Class 'FFMpeg\FFMpeg' not found in /var/www/html/upload/test.php:10 Stack trace: #0 {main} thrown in /var/www/html/upload/test.php on line 10

    I tried to manually include the composer autoload.php with :

    require_once 'vendor/autoload.php';

    However I get this error :

    Warning: require_once(vendor/autoload.php): failed to open stream: No such file or directory in /var/www/html/upload/test.php on line 6

    I found out that is because composer vendor is at root of apache.

    any help ?