Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • af_hdcd : Add analyze mode

    7 août 2016, par Burt P
    af_hdcd : Add analyze mode
    

    A new mode, selected by filter option, to aid in analysis of HDCD
    encoded audio. In this mode the audio is replaced by a solid tone and
    the amplitude is adjusted to signal some specified aspect of the process.
    The output file can be loaded in an audio editor alongside the original,
    where the user can see where different features or states are present.

    Signed-off-by : Burt P <pburt0@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/af_hdcd.c
  • Keep getting WIN32Exception when running FFMPEG in ASP.NET project

    23 octobre 2014, par Lance Bloom

    I have an ASP.NET project and I want to use FFMPEG to help create thumbails for my videos. I’ve loaded FFMPEG into the project, and whenever I run my code I get the same error :

    ’ffmpeg.MainModule’ threw an exception of type ’System.ComponentModel.Win32Exception’
    "A 32 bit processes cannot access modules of a 64 bit process."

    I’m using VS 2013, and I’ve set my target platform to x86, and made 100% sure I am using the 32bit version of ffmpeg. I’m using the static libraries from this site (http://ffmpeg.zeranoe.com/builds/) I also tried to change the target platform to All CPUs or x64, and tried with both 32 and 64 bit versions of FFMPEG. Always the same error. I am running IIS Express when I test in my local environment.

    Here is my code. Would appreciate any help !

    String vSource = "http://example.com/myvideo.mp4";
    String path1 = HttpContext.Current.Request.PhysicalApplicationPath;

    Process ffmpeg = new Process();
    ProcessStartInfo startinfo = new ProcessStartInfo(HostingEnvironment.MapPath("~/App_Data/exe/ffmpeg.exe"), "-i " + vSource + "-ss 00:00:05.000 -f image2 -vframes 1 " + path1 +"thumbnail1.jpg");

    startinfo.RedirectStandardError = true;
    startinfo.RedirectStandardOutput = true;
    startinfo.RedirectStandardInput = true;
    startinfo.UseShellExecute = false;
    startinfo.CreateNoWindow = true;
    ffmpeg.StartInfo = startinfo;

    ffmpeg.Start();
  • Evolution #4641 : Des rechargements Ajax avec des transitions personnalisables

    19 février 2021, par cedric -

    Je vais me répéter, mais même si tu avais besoin de surcharger ajaxCallback, ce qui reste à prouver, tu peux le faire dans un plugin et déjà on aura un cas concrêt pour discuter avec des vrais propositions de modif.

    Parce que moi je te dis "les étapes importantes" c’est simple :
    1/ Je lance la requete ajax : il y a par défaut class loading, mais tu peux prendre la main via une data-loading-callback et faire ce que tu veux à la place
    2/ ça requete le ajax... (là il se passe rien, donc bon je vois pas trop quel event ajouter...)
    3/ ajax arrive : il y un traitement par défaut consistant à remplacer le html et supprimer la class loading, mais tu peux prendre la main avec data-loaded-callback et faire tous les feux d’artifices que tu veux en N étapes kikoolol

    Bref conclusion : essaye vraiment et exploite le code et les point d’entrée qui existent avant de dire "c’est pas possible"