Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (105)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (5817)

  • Web Cam in use notification on Windows

    29 novembre 2013, par bir433

    Is there a way for my Windows program to get notifications when a video device is in use. I know how to enumerate the devices using http://msdn.microsoft.com/en-us/library/dd377566(v=vs.85).aspx
    I can also use ffmpeg to open the video device to check if it is available but it opens up the camera for that fraction of a time which I don't want.
    Any help will be appreciated. Thanks.

  • ffmpeg drawtext support for Tibetan fonts

    19 juin 2020, par A-Circle Zhang

    I'm trying to use ffmpeg drawtext filter to render Tibetan text to videos. But some characters aren't rendered correctly.

    



    for example :

    



    


    སྤྱི་སྟེགས

    


    



    Expected render output

    



    some characters which is.. vertically too long, are not rendered correctly :

    



    Actual render output

    



    and this is my command line for generating the output :

    



    ffmpeg -i input.mp4 -filter_complex "drawtext=fontsize=80:fontcolor=black:fontfile=himalaya.ttf:shadowx=1:shadowy=1:text='སྤྱི་སྟེགས':x=0:y=0" -c:v libx264 -b:v 400k -c:a copy output.mp4


    



    The font himalaya.ttf (Microsoft Himalaya) is the default built-in font for Tibetan on Windows 10. (See https://docs.microsoft.com/en-us/typography/font-list/microsoft-himalaya )

    



    I tried text_shaping=1 and text_shaping=0, neither one is working.

    



    I've also tried other Tibetan fonts, problem is the same.

    



    But all of those fonts are rendered correctly in other places such as web browser.

    


  • How to configure linking so that compiled binary finds libraries ?

    5 octobre 2015, par Jean Jordaan

    I’m compiling ffmpeg. Configuration :

     --prefix=/home/john/zope/engage/zeocluster/ffmpeg/parts/ffmpeg-build
     --extra-cflags='-I/home/john/zope/engage/zeocluster/ffmpeg/parts/x264-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/ogg-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/theora-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/lame-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/faac-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/faad-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/vpx-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/vorbis-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/ffmpeg-build/include'
     --extra-ldflags='-L/home/john/zope/engage/zeocluster/ffmpeg/parts/x264-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/ogg-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/theora-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/lame-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/faac-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/faad-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/vpx-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/vorbis-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/ffmpeg-build/lib'

    The build completes fine, and LD_LIBRARY_PATH=./parts/ffmpeg-build/lib:./parts/x264-build/lib ./parts/ffmpeg-build/bin/ffmpeg runs the binary.

    Why is that LD_LIBRARY_PATH necessary ? Didn’t I already tell the compiler to link against these libraries ?