Recherche avancée

Médias (91)

Autres articles (32)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (3129)

  • Movie making from lyrics with timestamps in python

    26 mai 2020, par carl

    I have lyrics from musixmatch with timestamps. I want to form video with the lyric lines in the video along with images in a file numbered from 1-n.

    



    As seen in this post, I thought ffmpeg would be something which can help me but there aren't much information that i can find.

    



    Also the answer given by @llogan, gives very vague idea of forming videos with "subtitle filter" in ffmpeg.

    



    It would be very helpful you can provide an example to explain your idea.(It can also help other coders at any time :) )

    



    Thanks in advance

    


  • Building shared library with ffmpeg results in relocation error

    9 juin 2017, par Peter

    I need to create a custom shared library that internally uses ffmpeg functions. The idea is to create one fat shared library, say, myffmpeg.so.

    I first build ffmpeg code (3.3.1 as of this post). During configuration, I specify -fPIC via --extra-cflags and --extra-cxxflags. I also specify -enable-pic during the configuration. After running configure and make, various archive files such as libswscale.a, libavformat.a, etc. are successfully created.

    Next, I try to build my shared library :

    gcc -fPIC -Ixxx  mywrapper.cpp
    gcc -shared -o myffmpeg.so mywrapper.o -Lxxx -lswscale -lavformat...

    However, this results in an error :

    Relocation R_X86_64_PC32 against symbol ff_M24A can not be
    used when making a shared object;

    Looks like I am missing some compiler/linker setting. Can someone please point me in the right direction ? Regards.

  • UDP : join multicast group on the interface specified with &localaddr=

    13 décembre 2013, par Stoian Ivanov
    UDP : join multicast group on the interface specified with &localaddr=
    

    When joining multicast groups, ffmpeg was using INADDR_ANY as interface address
    which leads to enabling the multicast group on the interface with "default gateway".
    Often multicast traffic is received over dedicated interface, which scenario ffmpeg was
    unable to handle. With this patch, ffmpeg will enable multicast group to the interfaces
    configured with address specified in &localaddr= parameter of udp :// URL. To avoid
    loacal_addr resolve at udp_close(...) the UDPContext structure was extended with
    struct sockaddr_storage local_addr_storage member, which is populated in udp_open(..)
    and passed to udp_join_multicast_group() and udp_leave_multicast_group().

    Signed-off-by : Stoian Ivanov <s.ivanov@teracomm.bg>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/udp.c