Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (63)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (12645)

  • configure : Don’t run "export $e" for an empty string

    2 juin 2015, par Martin Storsjö
    configure : Don’t run "export $e" for an empty string
    

    This fixes the side effect of printing the whole environment,
    if no —env parameter was provided.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
  • ffmpeg to validate video formet is genune and store error into string

    8 juin 2015, 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
    http://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

  • lavu : add an API function to return the FFmpeg version string

    30 juin 2015, par wm4
    lavu : add an API function to return the FFmpeg version string
    

    This returns something like "N-73264-gb54ac84". This is much more useful
    than the individual library versions, of which there are too much and
    which are very hard to map back to releases or git commits.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/APIchanges
    • [DH] libavutil/avutil.h
    • [DH] libavutil/utils.c