Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (3021)

  • Increased the default z-index.

    20 mai 2013, par JamesMGreene
    Increased the default z-index.
    Fixes #172.
    Fixes #173.
  • how to provide login username and password to ffmpeg ?

    11 septembre 2012, par Lynx

    how can i provide username and password to ffmpeg to enable it to write data to some folder in ftp server ?
    the folder is protected by password and if possible i dont want to remove that password. so, can i simply just pass the password to ffmpeg ? or is there any other solutions ?

    example of ffmpeg process to create thumbnail from video file

    string thumbpath, thumbname, videofile;
    videofile = "Video Source path";
    thumbpath = "thumbnail path";
    thumbname = thumbpath + "20120910160600.mjpeg";

    string thumbargs = "-i \"" + videofile + "\" -vframes 1 -s 60*30 -ss 00:00:00 -f image2 \"" + thumbname + "\"";

    Process process = new Process();

    process.StartInfo.FileName = Server.MapPath("~\\ffmpeg\\bin\\ffmpeg.exe");
    process.StartInfo.Arguments = thumbargs;

    process.StartInfo.UseShellExecute = false;
    process.StartInfo.RedirectStandardOutput = true;
    process.StartInfo.RedirectStandardInput = false;
    process.StartInfo.RedirectStandardError = true;
    process.StartInfo.CreateNoWindow = false;
    process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

    New Learner,
    Please guide me....

  • Révision 116143 : Un modele pour generer le HTML des logos d’objet

    29 juillet 2019, par cedric@yterium.com

    Au passage on se debarasse definitivement de la class spip_logos (cf https://core.spip.net/issues/2483) : c’est spip_logo depuis 5 ans maintenant
    On modernise le survol en suppriment le onmouseover/onmouseout au profit un d’un date-src-hover pour l’URL de l’image hover si il y en a une
    (Il devient ainsi facile de personaliser le HTML des logos ou de supprimer les logos de survol partout)