Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (57)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10027)

  • 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"

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