Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (34)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

  • undefined reference to 'ff_put_pixels_clamped_mmx'

    24 avril 2017, par Aviv Sharon

    I have a windows 8.1 64 bit, intel i7.
    I am trying to build ffmpeg dynamic libraries (dll) from sources, version 3.2.4 For that, I cloned ffmpeg git repository, and checked out tag n3.2.4
    I installed mingw64 in my windows 8.1, opened a mingw64 shell.
    I ran "configure" command before building, with the following switches :

    ./configure --prefix=ffmpeg/ --disable-gpl --disable-nonfree --enable-shared --disable-static --disable-doc  --disable-yasm --disable-debug --disable-network

    On some point, in the link phase, it exits with these ld errors :

    WINDRES libswresample/swresampleres.o
    GEN     libswresample/libswresample.ver
    LD      libswresample/swresample-2.dll
    sed -e "s/ @[^ ]*//" libswresample/swresample-2.orig.def > libswresample/swresample-2.def; dlltool -m i386:x86-64 -d libswresample/swresample-2.def -l libswresample/swresample.lib -D swresample-2.dll
    LD      libavcodec/avcodec-57.dll
    libavcodec/x86/simple_idct.o: In function `ff_simple_idct_put_mmx':
    C:\GitRepos\ffmpeg/libavcodec/x86/simple_idct.c:911: undefined reference to `ff_put_pixels_clamped_mmx'
    C:\GitRepos\ffmpeg/libavcodec/x86/simple_idct.c:911:(.text+0x1fb0): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `ff_put_pixels_clamped_mmx'
    libavcodec/x86/simple_idct.o: In function `ff_simple_idct_add_mmx':
    C:\GitRepos\ffmpeg/libavcodec/x86/simple_idct.c:916: undefined reference to `ff_add_pixels_clamped_mmx'
    C:\GitRepos\ffmpeg/libavcodec/x86/simple_idct.c:916:(.text+0x1fe0): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `ff_add_pixels_clamped_mmx'
    libavcodec/x86/simple_idct.o: In function `ff_simple_idct_put_sse2':
    C:\GitRepos\ffmpeg/libavcodec/x86/simple_idct.c:921: undefined reference to `ff_put_pixels_clamped_sse2'
    C:\GitRepos\ffmpeg/libavcodec/x86/simple_idct.c:921:(.text+0x2010): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `ff_put_pixels_clamped_sse2'
    libavcodec/x86/simple_idct.o: In function `ff_simple_idct_add_sse2':
    C:\GitRepos\ffmpeg/libavcodec/x86/simple_idct.c:926: undefined reference to `ff_add_pixels_clamped_sse2'
    C:\GitRepos\ffmpeg/libavcodec/x86/simple_idct.c:926:(.text+0x2040): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `ff_add_pixels_clamped_sse2'

    Found out that adding -mcmodel=large switch as suggested in some places should fix it.
    After I added it, I only left with the "undefined reference" errors, which I have a feeling that is related to 64/32 bit issues :

    GEN     libswresample/libswresample.ver
    LD      libswresample/swresample-2.dll
    sed -e "s/ @[^ ]*//" libswresample/swresample-2.orig.def > libswresample/swresample-2.def; dlltool -m i386:x86-64 -d libswresample/swresample-2.def -l libswresample/swresample.lib -D swresample-2.dll
    LD      libavcodec/avcodec-57.dll
    libavcodec/x86/simple_idct.o:simple_idct.c:(.rdata$.refptr.ff_add_pixels_clamped_sse2[.refptr.ff_add_pixels_clamped_sse2]+0x0): undefined reference to `ff_add_pixels_clamped_sse2'
    libavcodec/x86/simple_idct.o:simple_idct.c:(.rdata$.refptr.ff_put_pixels_clamped_sse2[.refptr.ff_put_pixels_clamped_sse2]+0x0): undefined reference to `ff_put_pixels_clamped_sse2'
    libavcodec/x86/simple_idct.o:simple_idct.c:(.rdata$.refptr.ff_add_pixels_clamped_mmx[.refptr.ff_add_pixels_clamped_mmx]+0x0): undefined reference to `ff_add_pixels_clamped_mmx'
    libavcodec/x86/simple_idct.o:simple_idct.c:(.rdata$.refptr.ff_put_pixels_clamped_mmx[.refptr.ff_put_pixels_clamped_mmx]+0x0): undefined reference to `ff_put_pixels_clamped_mmx'
    collect2.exe: error: ld returned 1 exit status
    make: *** [library.mak:94: libavcodec/avcodec-57.dll] Error 1

    Please help,
    thanks

  • opus_pvq : improve PVQ search for low Ks

    24 février 2017, par Rostislav Pehlivanov
    opus_pvq : improve PVQ search for low Ks
    

    Since the probelm mentioned only happened when the phase was negative
    (e.g. the sum had to be decreased), only discarding dimensions with a
    zero pulse in that case restored the search’s previously low distortion
    at low Ks when the phase is never negative.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/opus_pvq.c
  • Evolution #3896 : Bienvenue personnalisée à l’installation d’un plugin

    6 février 2017, par cam.lafit -

    Salut

    Je ne pense pas que la solution de b_b réponde au besoin exprimé par jluc. D’un coté on doit répondre quelle action doit suivre l’installation, aller à la page exec, la page de configuration, ne rien faire et de l’autre on doit répondre comment s’utilise le plugin.
    La solution de b_b semble répondre au second cas mais pas au premier.
    L’idée de jluc est intéressante, au moment de l’installation savoir de suite comment continuer est me semble pertinente. On n’a pas obligatoirement l’idée de retourner à la page des plugins actif, trouvé le plugin installé , déplier le descriptif et trouvé le lien cfg. De plus dans certains cas c’est une exec qu’on souhaiterait avoir.

    Cela se complique si lors de l’installation on a plusieurs plugins installés.

    Le compagnon semble pertinent pour accompagner l’administrateur lors de l’usage du plugin, donc lors d’une phase plus tardive.