Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (66)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8713)

  • How to extract frames from a YUV file ?

    21 juin 2018, par pradeep

    I have a YUV file and I want to obtain each frame in the form of a BMP file, how to go by doing this ? I have FFMPEG and MPlayer at my disposal.

  • How to extract frames from a YUV file ?

    17 juillet 2014, par pradeep

    I have a YUV file and I want to obtain each frame in the form of a BMP file, how to go by doing this ? I have FFMPEG and MPlayer at my disposal.

  • Rename file before remuxing with ffmpeg

    12 mars 2023, par Stevens xD

    I've this code :

    


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

    


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

    


    pause

    


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

    


    pause

    


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

    


    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 :

    


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

    


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