Recherche avancée

Médias (91)

Autres articles (20)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (5121)

  • FFMPEG Dash libvorbis page samples error

    9 mai 2015, par Brittel

    When using the guide http://wiki.webmproject.org/adaptive-streaming/instructions-to-playback-adaptive-webm-using-dash to encode several webm streams the audio stream is not correctly encoded by ffmpeg.

    ffmpeg -i input_audio.wav -c:a libvorbis -b:a 128k -vn -f webm -dash 1 audio_128k.webm

    When creating the manifest and loading the stream into ExoPlayer (but the same problem occurs in the reference javascript implementation dash.js), the error states :

    [...] SoftVorbis.cpp:314 CHECK_GE( inHeader->nFilledLen,sizeof(numPageSamples)) failed: 1 vs. 4

    The stream works flawlessly when not including the audio stream in the manifest.

    I’m using ffmpeg version 2.5.6-0ubuntu0.15.04.1

    Does anyone know what the problem might be ?

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