Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (60)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (5417)

  • ffmpegthumbnailer issue : dyld : Library not loaded : /usr/local/lib/libavutil.52.18.100.dylib

    18 octobre 2013, par scientiffic

    When I try to run ffmpegthumbnailer, I get the following error :

    dyld: Library not loaded: /usr/local/lib/libavutil.52.18.100.dylib
     Referenced from: /usr/local/bin/ffmpegthumbnailer
     Reason: image not found
     Trace/BPT trap: 5

    I installed ffmpeg using the directions here :

    http://ffmpeg.org/trac/ffmpeg/wiki/MacOSXCompilationGuide

    In my /usr/local/lib folder, I have the file "libavutil.a", but not the one specified in the error mesage.

    How can I solve this error ?

    This is what I was using to try to generate a thumbnail :

    ffmpegthumbnailer -i /public/uploads/tmp/1382121359-37490-7826/thumb_Untitled.mov -o /public/uploads/tmp/1382121359-37490-7826/tmpfile.png -c png -q 10 -s 158
  • Converting a large number of MP3 files to videos for YouTube, each using same the JPEG image

    25 juin 2020, par David

    I am looking for a way to convert large number of MP3 files to videos, each using the same image. Efficient processing time is important.

    


    I tried the following :

    


    ffmpeg -i image.jpg -i audio.mp3 -vcodec libx264 video.mp4


    


    VLC media player played the resulting video file with the correct sound, but a blank screen.

    


    Microsoft Media Player played the sound and showed the intended image. I uploaded the video to YouTube and received the message :

    


    


    "The video has failed to process. Please make sure you are uploading a supported file type."

    


    


    How can I make this work ?

    


  • run ffmpeg commands from my own project

    28 octobre 2013, par bruno

    I'm starting a project where I want ppl to upload videos of a talk and a the video of slides for that talk and want to merge them (to play at the same time) and then show results.

    My question is :
    Is it possible to do that from code ? if it is, can you point me to the right doc ?
    I was able to do it running command line, but as I want this to run on a server with different ppl uploading their videos I think this would not be the best approach.
    I have a preference for Java if it's possible to do it, but I can manage to use other languages what do you guys suggest ?

    The idea would be to have a service where I can point the urls of the videos stored in my server and it would merge them and save file where I can later stream. With different ppl uploading videos at the same time and being able to watch the result in a reasonable amount of time.

    I used this tutorial to test :
    https://trac.ffmpeg.org/wiki/Create%20a%20mosaic%20out%20of%20several%20input%20videos

    Thanks for your time