Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (69)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12963)

  • Building ffmpeg on WIN 10

    21 mars 2016, par Dmitry

    I`m trying to install ffmpeg library on WIN 10 following instruction.
    Until line

    Invoke the following make commands

    Everything was ok (all results in msys32 output was the same as in instruction). But when do

    ../../../configure \
    --toolchain=msvc \
    --disable-programs \
    --disable-d3d11va \
    --disable-dxva2 \
    --arch=x86 \
    --enable-shared \
    --enable-cross-compile \
    --target-os=win32 \
    --extra-cflags="-MD -DWINAPI_FAMILY=WINAPI_FAMILY_APP -D_WIN32_WINNT=0x0A00" \
    --extra-ldflags="-APPCONTAINER WindowsApp.lib" \
    --prefix=../../../Build/Windows10/x86

    make

    make install

    Msys32 says :

    cl is unable to create an executable file. C compiler test failed.

    If you think configure made a mistake, make sure you are using the
    latest version from Git. If the latest version fails, report the
    problem to the ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on
    irc.freenode.net. Include the log file "config.log" produced by
    configure as this will help solve the problem.

    Launching msys32 from VS2015 Native Tools Command Prompt.
    How to fix it ?
    screenshot of msys

    Also, in config.log at the end of file found this :

    WARNING : pkg-config not found, library detection may fail. mktemp -u
    XXXXXX y81gTF check_ld cc check_cc BEGIN ./ffconf.J02kVuXC.c
    1 int main(void) return 0 ; END ./ffconf.J02kVuXC.c cl -nologo -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS -MD -DWINAPI_FAMILY=WINAPI_FAMILY_APP -D_WIN32_WINNT=0x0A00 -c -Fo./ffconf.U0KH6R5x.o ./ffconf.J02kVuXC.c ffconf.J02kVuXC.c /c/LIBS/ffmpeg1/ffmpeg/compat/windows/mslink
    -APPCONTAINER WindowsApp.lib -nologo -out :./ffconf.UBL5VH7u.exe ./ffconf.U0KH6R5x.o LINK : fatal error LNK1181 : cannot open input file "WindowsApp.lib" C compiler test failed.

  • Ffmpeg command results in output contains no video stream error

    23 décembre 2022, par Aenye_Cerbin

    I'm trying to execute the following command :

    

ffmpeg -hide_banner -loglevel warning -progress -i E:\TEMP\mtc\input\sample2.mp4 -acodec mp3 -vcodec libx265 -r 60 -vf "scale=2560:1440" -b:v 35000k -f matroska E:\TEMP\mtc\input\output\result.mkv



    This results in error :
Output file #0 does not contain any stream

    


    The input file exists and can be accessed by ffmpeg.
I'm working on Windows 10 with latest version of FFmpeg.

    


  • Process video with frame averaging to produce long exposure final frame

    4 mars 2020, par user3925023

    I’m looking for a FFMPEG script able to process a video file, create frame averaging and save latest long exposed frame.
    My goal is to process the video enhancing the trasparent TV logo on the screen :
    enter image description here

    Is this viable via FFMPEG ? thx