Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (68)

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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (13614)

  • matroskaenc : add an option to put the index at the start of the file

    30 avril 2013, par Anton Khirnov
    matroskaenc : add an option to put the index at the start of the file
    
    • [DH] Changelog
    • [DH] doc/muxers.texi
    • [DH] libavformat/matroskaenc.c
    • [DH] libavformat/version.h
  • avcodec/decode : use a packet list to store packet properties

    17 août 2020, par James Almer
    avcodec/decode : use a packet list to store packet properties
    

    Keeping only the latest packet fed to the decoder works only for decoders that
    return a frame immediately after every consumed packet. Decoders that consume
    several packets before they return a frame will fill said frame with properties
    taken from the last consumed packet instead of the earliest.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/decode.c
    • [DH] libavcodec/internal.h
    • [DH] libavcodec/utils.c
  • ffmpeg to validate video format is genune and store error into string

    7 janvier 2019, par hari krishna

    Since there are hackers uploading malicious software’s in name of video extensions(.mp4,webm..etc) in websites. I tried to validate videos uploaded from file upload in asp.net.This website helped me to find a way to do this operation using ffmpeg
    https://superuser.com/questions/100288/how-can-i-check-the-integrity-of-a-video-file-avi-mpeg-mp4
    I tried to do this operation in asp.net and failed due to errors since my first time using ffmpeg.below is my code.I tried to save malicious software creates error in to a string.

          Process ffmpeg;
          string video;
          string thumb="";
          video = Page.MapPath("") + "\\input\\error.mp4";
          ffmpeg = new Process();
          ffmpeg.StartInfo.Arguments = "-v error -i \"" + video + "\"-f null - 2> \"" + thumb + "\"";
          ffmpeg.StartInfo.FileName = Page.MapPath("ffmpeg//ffmpeg.exe");
          ffmpeg.Start(); // start !
          ffmpeg.StartInfo.CreateNoWindow = true;
          ffmpeg.WaitForExit();
          Label1.Text = thumb;

    please also let me know if there is any other option other than ffmpeg