Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (97)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5585)

  • phplondon conference 2008

    9 juin 2010, par Mikko Koppanen — Everything else, Imagick, PHP stuff, phplondon08

    To summarize it : I had fun :) My conference preparations started about two weeks before the conference. The PHPLondon fellows (Paul, Matt and Richard) asked me to do a small presentation about Imagick at the pre-conference social event. The presentation I assembled ended up being a little over two hours, give or take. The hardest part was to trim down from two hours to about 40 minutes (I didn’t want to bore the people with too many code examples). The slides are available at http://valokuva.org/talks if you need them for some reason.

    My conference day was pretty hectic from the beginning to the end. I gave a few demos about the products that we represent and the moment I opened my mouth for the first time people started leaving the room. I hope that it had something to do with the “My Framework is better than yours ?” talk starting at the same time ;)

    I met quite a lot of new people at the conference and of course it was nice to see the familiar faces from other conferences and PHPLondon meetings. I was especially happy that I was able to answer the questions Nigel James had ;)

    A huge thanks to the organizers for making this day possible !

  • Migrated main development to Visual Studio 2008 (which has a better integration with...

    20 novembre 2010, par Cristian Adam

    Migrated main development to Visual Studio 2008 (which has a better integration with...

  • FFMPEG Does not work on Windows Server 2008

    25 août 2011, par Khaldoun

    I have an ASP.NET MVC Web Site ,the user can upload a video and When Done It finish uploading I show him an image extracted from the Video,
    To do this I used the FFMPEG exe to get a frame.
    Everthing works well in the developement machine , when I use the test environement it does not work !!
    I've given the read/write and execute permissions to following folders :
    1. videos(folder that store uploaded video files)
    2. thumbnails (folder that store the thumbnails of videos, captured by ffmpeg)
    3.ffmpeg.exe file at root and given read/write execute permissions to that file also.
    but it does not work.

    var _converter = new ImageConvertor(@System.Configuration.ConfigurationManager.AppSettings["FFmpegExec"].ToString());
               _converter.WorkingPath = Server.MapPath("~/VideoSamples");
               OutputPackage oo = _converter.ConvertToFLV(videoFilepath);
               FileStream outStream = System.IO.File.OpenWrite(Path.Combine(Server.MapPath("~/VideoSamples"), id.ToString() + ".flv"));
               oo.VideoStream.WriteTo(outStream);

    This Code Works on developement env but not in test env !!!
    Any Ideas Please