Recherche avancée

Médias (91)

Autres articles (76)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • Create MP4 for HTML5 video with FFMPEG

    7 août 2013, par Kris

    I'm trying to create an MP4 file with FFMPEG to play with a HTML5 video tag.

    I found some sample codes that use libx264, but when I tried, FFMPEG gave me an "unknown encoder libx264" error.

    I asked my host to install it on my server, and got the following reply :

    After review from our L3 group I am informed that x264 is not supported with FFMPEG any longer. That was a library that went with FFMPEG-PHP that is not supported at all by anyone.

    In order to get that to work with FFMPEG you would need to contact the developers of the FFMPEG software to get assistance with that as it is outside our scope of support.

    I looked everywhere online, but can't seem to find an answer to this. If libx264 is not supported anymore, how is everyone else doing it ? Still libx264 with an older FFMPEG version, or some other way ?

  • Using Java and ffmpeg to most efficiently merge mp3 audio file and jpeg image file to a video file [closed]

    25 juin 2020, par Eugen

    I'm looking for an efficient way in Java to merge a large .mp3 file and a single .jpg image to a video format for youtube. If I use :

    


    ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest output.mp4


    


    the result is very slow, especially for large .mp3 files. Is it possible to do it more efficiently with ffmpeg ? I know there must be a way to do it much more efficiently, like all the online converters are doing it.

    


  • Inserting an image inside a video every few frames using ffmpeg

    31 juillet 2023, par Erez Hochman

    Can I use FFMPEG to insert an image every 20 frames in a video ? 
I'm trying to create a subliminal message experiment and I thought it would be an easy way to make it but I can't find anything online.

    



    I tried to make something myself and created a script that :
    
1.splits a file into audio and video files
    
2.splits the video into frames
    
3.overwrites every 20th image in the sequence with the message image
    
4.re-encoding the video
    
5.concatenating it with the original audio

    



    this works but it's way more disk space consuming to be comfortable, is there a better way to do this ?
    
any advice or thought would be happily welcome.