Recherche avancée

Médias (91)

Autres articles (95)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (12918)

  • avcodec/pngdec : Pass ret from decode_iccp_chunk()

    18 avril 2020, par Michael Niedermayer
    avcodec/pngdec : Pass ret from decode_iccp_chunk()
    

    Found while reviewing a patch fixing a similar issue

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/pngdec.c
  • avcodec/iff : Pass extradata and extradata_size explicitly

    11 juillet 2022, par Andreas Rheinhardt
    avcodec/iff : Pass extradata and extradata_size explicitly
    

    This might be useful in case this decoder were changed to support
    new extradata passed via side-data.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/iff.c
  • Can not pass command argument to external .exe app called by Java [on hold]

    13 septembre 2016, par Samuel Lee

    I am trying to call a local ffmpeg.exe from java to merge a video and audio file.

    Below windows cmd script works fine

    c:\users absPathOf ffmpeg.exe  -i absPathOf video.mp4 -i absPathOf audio.mp4  ouput.mp4

    But having problems with passing the argument in java, have tried below , but not work

       Process process = new ProcessBuilder(absPathOf ffmpeg.exe,-i absPathOf video.mp4,-i absPathOf audio.mp4,outPut).start();

    I am pretty sure that the ffmpeg.exe has lauched, but merely without the argument I passed

    Also, my path String like below, I have tried separators of "/","\","\"
    seems does not make any difference

    F:\\ffmpeg-20160912-bc7066f-win64-static\video.mp4

    I have checked the old questions, finding no helpful solution, can anyone help on this ? tks