Recherche avancée

Médias (91)

Autres articles (76)

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

  • libswresample : move condition to start of loop.

    6 septembre 2014, par Reimar Döffinger
    libswresample : move condition to start of loop.
    

    This avoids several issue like calculating sum/maxcoef
    incorrectly due to adding up matrix entries that will
    be overwritten, as well as out-of-range writes to
    s->matrix if the maximum allowed number of channels is used.

    Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>

    • [DH] libswresample/rematrix.c
  • mov : Rely on box type rather than file type for colr atom

    23 mars 2015, par Vittorio Giovara
    mov : Rely on box type rather than file type for colr atom
    

    Although it’s not allowed to use only allows ’nclc’ in ISOM files, there
    are samples that do not always respect this rule. This change prevents
    atom overread and a spurious color range initialization.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavformat/mov.c
  • Rename file before remuxing with ffmpeg

    12 mars 2023, par Stevens xD

    I've this code :

    &#xA;

    @echo off&#xA;set dialog="about:FILE.click() ;new ActiveXObject&#xA;set dialog=%dialog%('Scripting.FileSystemObject').GetStandardStream(1).WriteLine(FILE.value) ;&#xA;set dialog=%dialog%close() ;resizeTo(0,0) ;"

    &#xA;

    for /f "tokens=* delims=" %%p in ('mshta.exe %dialog%') do set "file=%%p"&#xA;echo El archivo seleccionado es : "%file%"

    &#xA;

    pause

    &#xA;

    ffmpeg -i "%file%" -vf scale=2560x1440:flags=lanczos -c:v libx264 -pix_fmt yuv422p -preset medium -crf 14 -c:a copy output.mp4

    &#xA;

    pause

    &#xA;

    What I want to do is to have the possibility to rename the file before proceeding with the remux.

    &#xA;

    Right now the final file will be called "output.mp4", but what I want to do is to have a dialog pop up where I am allowed to write the file name however I want. Something like :

    &#xA;

    Rename the file to : (And then I would write for instance ... example1.mp4 instead of output.mp4).

    &#xA;

    I know that instead of "copy output.mp4" I could write "copy example1.mp4" but that's not what I want.

    &#xA;