Recherche avancée

Médias (91)

Autres articles (60)

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

  • 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

Sur d’autres sites (10782)

  • configure : Properly check for availability of -Wno-foo warning flags

    31 octobre 2013, par Diego Biurrun
    configure : Properly check for availability of -Wno-foo warning flags
    

    For some weird reason gcc does not check if the -Wno disabling variants
    of warning flags match existing warning flags. Instead it swallows them
    silently. That is, unless other warning or error messages are generated,
    because then - for some even more bizarre reason - a complaint about the
    unknown disable warning flag is issued along with the error or warning
    message.

    Thus to check for the availability of a warning disabling option, one
    needs to check for the enabling variant instead and then add the
    disabling variant to CFLAGS.

    • [DH] configure
  • build system : fix dependency generation

    8 octobre 2015, par Christophe Gisquet
    build system : fix dependency generation
    

    When trying to build the binary dct-test under MSYS2/Win64, the
    makefile rule does not have the SUBDIR in the target for its
    object file.

    Consequently, modifications to various include files (e.g. C ones)
    do not trigger a recompilation.

    When tracing the dependency generating, the dependency generation
    has this strange content (linebreak inserted) :
    sed -e "/^#.*/d" -e "s,^ [1]*dct\.o,libavcodec/dct.o," \
    > libavcodec/dct-test.d

    For some reason, the $(*F) has weird content. It looks simpler to
    use $(@F) instead of $(*F)\.o, although this was tested on one
    single version of make.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] configure
  • FFMPEG : Multiple cuts/splices in the same video ? [duplicate]

    10 août 2018, par Brayden

    This question already has an answer here :

    Sorry in advance if this was a duplicate. I couldn’t find the solution on Google, since the question is weird to word.

    Anyway, can you use ffmpeg commands to splice videos ?

    For example...

    ffmpeg -i MOVIE.mp4 -ss 00:00:00.000 -to 00:06:14.000 -ss 00:07:00.000 -to 00:07:15.000

    You could have multiple -ss and -to commands to basically designate multiple cuts in the video, so that the final result would be from 0:0 to 6:14, and then after that, directly skip to 7:00 and end finally at 7:15. Does that make sense ?

    I know you can use real editors for this, but that’s a bit more time consuming than to just simply do it here with a command. However, if it doesn’t have this feature, it’s not a big deal, I was just wondering.

    Thanks !