Recherche avancée

Médias (91)

Autres articles (84)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (10656)

  • ffmpeg fails : Invalid input file index : 1

    12 août 2020, par BETLOG

    I'm having trouble with an ffmpeg -filter_complex in a script that constructs the command progressively before eval-ing it.

    


    It seems to work when invoked with a single timestamp, but when i try to use multiple it fails.

    


    I'll post the script if needed, but can someone cast their eye over this and tell me if there's anything obviously wrong with the syntax please ?

    


    ffmpeg -loglevel error -hide_banner \
-i "/media/user/video/input.mp4" \
-s 1920x1080 -filter_complex \
        "[0:v]select=gte(t\,17.000),crop=in_w/2:in_h/8:0:0,drawtext=expansion=normal:text='00\:00\:17.000':x=20:y=100:box=1:fontsize=30:fontcolor=lightgreen:box=1:boxcolor=black:boxborderw=2[p0]\
        ;[0:v]select=gte(t\,19.000),crop=in_w/2:in_h/8:0:0,drawtext=expansion=normal:text='00\:00\:19.000':x=20:y=100:box=1:fontsize=30:fontcolor=lightgreen:box=1:boxcolor=black:boxborderw=2[p1]"  \
        -frames:v 1 -map [p0] \
        -y "/media/user/video/export_00:00:17.000.png"  \
        -frames:v 1 -map [p1] \
        -y "/media/user/video/export_00:00:19.000.png"  null


    


    The error is :

    


    Invalid input file index: 1.


    


  • FFMpeg kills itself when restreaming http to rtmp

    22 novembre 2019, par dust19992

    We are trying to restream few stations to our Emby server (alternative to plex), but always when we start the command as provided by many cast-software it runs for some time and then it dies.

    Here is our command :

    ffmpeg -i http://URL/IP:1515/station/discoverychannel/15HD -c:a aac -b:a 96k -ar 44100 -vcodec copy -f flv rtmp://server/discoverystation/15HD

    The error is none the only exit message is :

     Stream #0:0 -> #0:0 (copy)
     Stream #0:1 -> #0:1 (aac (native) -> aac (native))
    Press [q] to stop, [?] for help
    frame=33056 fps= 60 q=-1.0 Lsize=  302387kB time=00:09:11.45 bitrate=4492.0kbits/s speed=1.01x
    video:295223kB audio:6576kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.194924%
    [aac @ 0x55b6a748ee40] Qavg: 583.684
    Exiting normally, received signal 2
    root@simpsons:~#```


    Our server is WOWZA media server, and we have been looking for the problem for some time now, but without any success, so we hope you guys can help us figure it out, we are trying to copy the live video as it is, and we do not want to change the encoding, or anything else, but if necessary then it has to be encoded.

    I have not much experience in ffmpeg but we have been using VMIX that uses ffmpeg and it's running smooth there to the server without dying, so there has to be a way to run that with the ffmpeg standalone.

    Here is the WOWZA restream manual: https://www.wowza.com/docs/how-to-restream-using-ffmpeg-with-wowza-streaming-engine

    Thanks.
  • How to make ffmpeg configure add to the end of compiling line ?

    28 octobre 2012, par myWallJSON

    I want to make ffmpeg not to use -fno-math-errno on compilation.

    I tried ./configure --extra-cflags="-fmath-errno"

    but it ads it before ffmpegs -fno-math-errno :

    gcc -I. -I./ -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DHAVE_AV_CONFIG_H   -std=c99 -fomit-frame-pointer -I/cygdrive/c/Users/Avesta/Downloads/FlasCC_1.0.1121790_10-08-2012/sdk/usr/include/SDL -D_GNU_SOURCE=1 -Wdeclaration-after-statement -Wall -Wno-parentheses -Wno-switch -Wno-format-zero-length -Wdisabled-optimization -Wpointer-arith -Wredundant-decls -Wno-pointer-sign -Wwrite-strings -Wundef -Wmissing-prototypes -Wno-pointer-to-int-cast -Wstrict-prototypes -O3  -mllvm -stack-alignment=16  -MMD -MF libavformat/allformats.d -MT libavformat/allformats.o -c -o libavformat/allformats.o libavformat/allformats.c

    \so I wonder how to make configure to add flags after all -f including -fno-math-errno ?

    there are :

     --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS []
     --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS []
     --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS []
     --extra-libs=ELIBS       add ELIBS []
     --extra-version=STRING   version string suffix []