Recherche avancée

Médias (91)

Autres articles (15)

  • 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

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

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

Sur d’autres sites (2860)

  • SRT protocol not found - Raspbery Pi 4 via ffmpeg

    12 août 2021, par Tim Martin

    We tried to stream from a rasp Pi 4 via SRT, but we got a error : "protocol not found". Our command line is :

    


    ffplay srt://127.0.0.1:9500?mode=listener&latency=20000


    


    We tried the following guides :
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
how to compile ffmpeg with enabling libsrt
https://www.undergroundnews.dk/index.php/item/107-rtmp-eller-srt-streaming

    


    Those guides worked so far and compiled but we still got the error message.

    


    Do you have any ideas how to get the srt protocol working on a pi via ffmpeg ?

    


  • Merge commit ’9a9e2f1c8aa4539a261625145e5c1f46a8106ac2’

    22 juin 2014, par Michael Niedermayer
    Merge commit ’9a9e2f1c8aa4539a261625145e5c1f46a8106ac2’
    

    * commit ’9a9e2f1c8aa4539a261625145e5c1f46a8106ac2’ :
    dsputil : Split audio operations off into a separate context

    Conflicts :
    configure
    libavcodec/takdec.c
    libavcodec/x86/Makefile
    libavcodec/x86/dsputil.asm
    libavcodec/x86/dsputil_init.c
    libavcodec/x86/dsputil_mmx.c
    libavcodec/x86/dsputil_x86.h

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/ac3enc.c
    • [DH] libavcodec/ac3enc.h
    • [DH] libavcodec/ac3enc_fixed.c
    • [DH] libavcodec/ac3enc_float.c
    • [DH] libavcodec/ac3enc_template.c
    • [DH] libavcodec/acelp_pitch_delay.c
    • [DH] libavcodec/acelp_pitch_delay.h
    • [DH] libavcodec/arm/Makefile
    • [DH] libavcodec/arm/audiodsp_arm.h
    • [DH] libavcodec/arm/audiodsp_init_arm.c
    • [DH] libavcodec/arm/audiodsp_init_neon.c
    • [DH] libavcodec/arm/audiodsp_neon.S
    • [DH] libavcodec/arm/dsputil_init_neon.c
    • [DH] libavcodec/arm/dsputil_neon.S
    • [DH] libavcodec/audiodsp.c
    • [DH] libavcodec/audiodsp.h
    • [DH] libavcodec/cook.c
    • [DH] libavcodec/dsputil.c
    • [DH] libavcodec/dsputil.h
    • [DH] libavcodec/g729dec.c
    • [DH] libavcodec/g729postfilter.c
    • [DH] libavcodec/g729postfilter.h
    • [DH] libavcodec/ppc/Makefile
    • [DH] libavcodec/ppc/audiodsp.c
    • [DH] libavcodec/ppc/dsputil_altivec.h
    • [DH] libavcodec/ppc/dsputil_ppc.c
    • [DH] libavcodec/ra144.c
    • [DH] libavcodec/ra144.h
    • [DH] libavcodec/ra144dec.c
    • [DH] libavcodec/ra144enc.c
    • [DH] libavcodec/takdec.c
    • [DH] libavcodec/x86/Makefile
    • [DH] libavcodec/x86/audiodsp.asm
    • [DH] libavcodec/x86/audiodsp.h
    • [DH] libavcodec/x86/audiodsp_init.c
    • [DH] libavcodec/x86/dsputil.asm
    • [DH] libavcodec/x86/dsputil_init.c
    • [DH] libavcodec/x86/dsputil_mmx.c
    • [DH] libavcodec/x86/dsputil_x86.h
  • Installing ffmpeg in Ubuntu by using Chef fails by error of yasm version

    23 décembre 2014, par ironsand

    I want to install ffmpeg in Ubuntu14.04 by using chef.

    This is my config files for it.

    Berksfile

    source "https://api.berkshelf.com"
    cookbook 'apt'
    cookbook 'ffmpeg'

    nodes/ubuntu.json

    {
       "run_list": [
           "apt",
           "ffmpeg"
       ]
    }

    Then run knife solo cook ubuntu. It ends up with a error :

    STDOUT: Found no assembler
    Minimum version is yasm-1.2.0

    I understand the error. probably if I install yasm-1.2.0 manually, then the error will be fixed.

    But I want to install only by using chef. What can I do to solve the problem ?