Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (62)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8489)

  • Anomalie #3162 : Moteur de recherche : combinaison d’un mot court et d’un mot avec accents ne reto...

    30 janvier 2014, par b b

    Hop, je confirme.

    Sur SPIP 3.1-dev avec une base SQLite une recherche sur "hélène" ou "hélène paris" ne renvoie rien alors que "paris" renvoie le bon résultat.

    Sur SPIP 3.0.15-dev avec une base MySQL en utf8 je confirme le bug : "hélène", "paris", "hélène paris" fonctionnent alors que "la hélène" ou "hélène et" ne fonctionnent pas.

  • arm : hpeldsp : prevent overreads in armv6 asm

    5 mars 2014, par Janne Grunau
    arm : hpeldsp : prevent overreads in armv6 asm
    

    Based on a patch by Russel King <rmk+libav@arm.linux.org.uk>

    Bug-Id : 646
    CC : libav-stable@libav.org

    • [DH] libavcodec/arm/hpeldsp_armv6.S
    • [DH] libavutil/arm/asm.S
  • Combining Audio and Video file in python [duplicate]

    8 juin 2020, par yso

    I'm trying to understand how to us ffmpeg to combine video and audio files in python. I want to combine a .avi file and a .wav file to create a final .avi file. Is this the right approach ? I'm confused by the ffmpeg syntax.&#xA;Any help would be great.

    &#xA;&#xA;

    I was looking through this for help :&#xA;https://wiki.libav.org/Snippets/avconv#Combine_audio_and_video_file

    &#xA;&#xA;

    import ffmpeg&#xA;import subprocess&#xA;&#xA;cmd = &#x27;ffmpeg -i inputvideo.avi -i inputaudio.wav -c:v copy -c:a aac output_video_and audio.avi&#x27;&#xA;subprocess.call(cmd, shell=True)                                     # "Muxing Done&#xA;print(&#x27;Muxing Done&#x27;)&#xA;

    &#xA;