Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (63)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8117)

  • mmvideo : check frame dimensions

    14 décembre 2014, par Anton Khirnov
    mmvideo : check frame dimensions
    

    The frame size must be set by the caller and each dimension must be a
    multiple of 2.

    CC : libav-stable@libav.org
    Bug-ID : CVE-2014-8543
    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind

    • [DBH] libavcodec/mmvideo.c
  • convert a format to .ogg and .webm and .mp4 via ffmpeg-php

    3 janvier 2015, par ali raha

    I try to convert mp4 to ogg and flv and webm via ffmpeg-php

    I use this function :

    function convertVideo($inputPath,$outPath,$width,$height,$newname,$format)
    {
      $outPath=$outPath."/".$newname.$format;
       exec("ffmpeg  -i $inputPath -ar 22050 -ab 32 -f $format -s ".$width."x".$height." $outPath 2>&1");    
    }

    It create 3 file. the .flv foramt works But not for .ogg and .webm
    It return a file with 0 size.

    what is my wrong ?

    This is my FFmpeg info on info.php

    ffmpeg

    ffmpeg-php version  0.6.0-svn
    ffmpeg-php built on Dec 18 2014 10:54:11
    ffmpeg-php gd support   enabled
    ffmpeg libavcodec version   Lavc52.72.2
    ffmpeg libavformat version  Lavf52.64.2
    ffmpeg swscaler version SwS0.11.0

    Directive   Local Value Master Value
    ffmpeg.allow_persistent 0   0
    ffmpeg.show_warnings    0   0
  • avformat/matroskadec : Remove non-incremental parsing of clusters

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Remove non-incremental parsing of clusters
    

    When the new incremental parser was introduced, the old parser was
    kept, because the new parser was unable to handle the way SSA packets
    are put into Matroska. But since 2014 (since c7d8dbad) this is no
    longer needed, so that the old parser can be completely removed.

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

    • [DH] libavformat/matroskadec.c