Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (48)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (9610)

  • FFMPEG video compression php

    6 juin 2014, par Ravindra Kumar Soam

    I have compressed a video in php with the code, given below :

    $sourceFile = $filename;
    $targetFile    = $filename;
    $resolution    = '640x480';

    $exec_string   = "ffmpeg -i ".$sourceFile." -r 30 -s ".$resolution." ".$targetFile;
    exec($exec_string);

    video is compressed with desired resolution, but this video is playing properly on mobile site version but for web application it is not playing.

    Showing only black screen with video time duration, is somebody there we can help to fixed the same ?????

  • Revision 39064 : amélioration de la vérification des bitrates audio / video et samplerates ...

    28 juin 2010, par kent1@… — Log

    amélioration de la vérification des bitrates audio / video et samplerates audio
    Particulièrement utile lorsque le document original est "pourri"

  • How to display seeked position for HTML5 video

    18 février 2010, par silvia

    Recently, I was asked for some help on coding with an HTML5 video element and its events. In particular the question was : how do I display the time position that somebody seeked to in a video ? Here is a code snipped that shows how to use the seeked event : <video (...)