Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (84)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (10492)

  • arm : check if AS supports .dn

    29 mai 2014, par Janne Grunau
    arm : check if AS supports .dn
    

    Move the GNU as check before the arch specific asm checks since the .dn
    check requires gas compatible assembler.

    Disable the VC-1 motion compensation NEON asm which is the only part
    using that directive. The integrated assembler in the upcoming clang 3.5
    does not support .dn/.qn without plans to change that. Too much effort
    to implement it while it is rarely used.

    http://llvm.org/bugs/show_bug.cgi?id=18199.

    • [DH] configure
    • [DH] libavcodec/arm/vc1dsp_init_neon.c
    • [DH] libavcodec/arm/vc1dsp_neon.S
  • Documentation #3360 : Mise à jour du profil utilisateur LDAP/SPIP

    18 mai 2016, par svpip -

    b b a écrit :

    Merci pour le retour, la doc me semble claire puisqu’elle ne mentionne pas le champ bio. Aurais-tu une idée de mention à ajouter à l’article pour clarifier la chose ?

    L’utilisateur doit être informé de cette particularité.

    Je propose le texte (à minima dans un premier temps) suivant à intégrer dans http://www.spip.net/fr_article1910.html sous forme de note de bas de page depuis la phrase existante :

    => Les champs remplis sont : nom, login et email qui viennent de LDAP (champs ’cn’, ’uid’ et ’mail’ respectivement) [1]...

    => [1] En complément de ces 3 champs, SPIP propose en option lors de l’installation en mode LDAP, de remplir le champ "bio" pour recevoir les informations issues du champs "description" généralement.
    La valeur récupérée par SPIP depuis le LDAP, lors de la première connexion, ne sera pas mise à jour par la suite.

  • Extracting JPG Image From MP4 Video

    17 mars 2015, par michael hanon

    I am using the below method to extract an image from a uploaded video and placing the image into a folder.

       private string GeneratePreviewImageMP4(string FileName, HttpPostedFile file, string ProperPath)
    {
       string inputfile = System.IO.Path.Combine(Server.MapPath(ProperPath), file.FileName);
       string ext = System.IO.Path.GetExtension(FileName);
       string thumbpath = AppDomain.CurrentDomain.BaseDirectory + "Reports\\TrainingLibrary\\Videothumbnails\\";
       string thumbname = thumbpath + FileName.Replace(ext, "") + ".jpg";
       string thumbargs = "-i " + inputfile + " -ss 00:00:25.435 -qscale:v 2 -vframes 1 " + thumbname;
       Process thumbproc = new Process();
       thumbproc.StartInfo.FileName = "C:\\FFMPEG\\Bin\\ffmpeg.exe";
       thumbproc.StartInfo.Arguments = thumbargs;
       thumbproc.StartInfo.UseShellExecute = false;
       thumbproc.StartInfo.CreateNoWindow = false;
       thumbproc.StartInfo.RedirectStandardOutput = false;
       try
       {
           thumbproc.Start();
       }
       catch (Exception ex)
       {
           Response.Write(ex.Message);
       }
       thumbproc.WaitForExit();
       thumbproc.Close();

       return FileName.Replace(ext, ".jpg");

    }

    The issue, is that once the image is extracted, I get locked out of the folder. No body has admin rights to that folder. We have to restart the Server just to restore access to that folder.

    This is only at certain times, most of the time it works great, but one out of ten times there will be an issue.

    Anyone now why this is happening ? Does it play the video to extract the image, but does not stop the video ?