Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (91)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (10378)

  • avfilter/af_astats : also measure maximal difference between two consecutive samples

    15 juillet 2015, par Paul B Mahol
    avfilter/af_astats : also measure maximal difference between two consecutive samples
    

    While here also mention bit depth in documentation.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/af_astats.c
  • swscale/swscale_unscaled : Fix rounding difference with RGBA output between little...

    29 juin 2015, par Michael Niedermayer
    swscale/swscale_unscaled : Fix rounding difference with RGBA output between little and big endian
    

    Fixes fate/dds-rgb16 on big endian

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

    • [DH] libswscale/swscale_unscaled.c
    • [DH] tests/ref/fate/dds-rgb16
  • Whats the difference between stream generated by ffmpeg vs lib VLC

    20 janvier 2015, par Arif Ali Saiyed

    I am trying to stream a Mp4 file to a webm file.

    After that I am reading this file chunk by chunk and feeding it to HTML5 viewer
    (video tag of html 5 viewer)

    in order to stream from MP4 file webm file I have had three options

    1) Stream out using VLC media player application
    2) Stream using libVLC through C code
    How to stream video using C/C++
    3) stream using ffmpeg commandline
    ffmpeg -i test.mp4 -c:v libvpx -c:a libvorbis -pix_fmt yuv420p -quality good output.webm

    While comsuming this webm generataed by all three options. 1st and 2nd is not working. While 3rd one is working. 1st and 2nd works only after streaming to file is completed and when last chunk of output file is fed to html5 video player.

    It seems vlcplayer and libVLC is not generating the required fragments with keyframes that are generated by ffmpeg.

    Is there anyway we can instruct libVLC or VLCplayer also to generated fragments with keydrame info ?