Recherche avancée

Médias (91)

Autres articles (35)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (5855)

  • Anomalie #4048 (Fermé) : Les brèves apparaissent dans la config des mots-clés

    28 septembre 2018, par cedric -

    Pfiou... l’usine à gaz pour gérer ça
    Je propose de considérer que c’est une feature : on configure les mots clés en proposant les objets existants, sans préjuger de ceux réellement utilisés ou non. Ça te permet de dire "si jamais j’utilise les brèves un jour je pourrai y associer des mots clés"

    Bref c’est ultra mineur

  • How to determine linux version on server [migrated]

    15 novembre 2011, par chetan

    I purchased a web server recently and have got access to shell on it.Want to install ffmpeg extension on it but I dont know the linux version on the server. I am not used to running linux commands, so can anybody help me in determining the linux version using the shell commands.

  • error converting .caf to .mp3 in mvc 4

    17 avril 2014, par Jennifer

    I used to convert caf to mp3 using Wscript.shell and ffmpeg.exe when i was using asp.net
    but now i'm using a web api restful method in mvc 4, so i don't have a .aspx page
    i'm getting the following error :

      Description:System.Web.HttpException (0x80004005): The component 'Wscript.Shell' cannot be created.  Apartment threaded components can only be created on pages with an <%@ Page aspcompat=true %> page directive.

    but i don't have an aspx page to add this tag...

    the code i was using in aspx is :

      Dim wshShell As Object
      wshShell = Server.CreateObject("Wscript.Shell")
      cmd = "cmd.exe /k """"" & szCAF_PATH & """ -i """ & szPhysicalPath & """ " & Arguments & " """ & szEncodedPath & """"""
      wshShell.Run(cmd)
      Dim strCommand As String = "taskkill /F /IM cmd.exe"
      wshShell.Run(strCommand, 0, True)
      szDownloadLink = szDownloadLink.Replace(".caf", ".mp3")

    and the code in mvc4 is :

      wshShell = HttpContext.Current.Server.CreateObject("Wscript.Shell")
      cmd = "cmd.exe /k """"" & File.CAF_PATH & """ -i """ & File.PhysicalPath & """ " & File.Arguments & " """ & File.EncodedPath & """"""
      wshShell.Run(File.cmd)
      strCommand = "taskkill /F /IM cmd.exe"
      wshShell.Run(strCommand, 0, True)
      File.DownloadLink = File.DownloadLink.Replace(".caf", ".mp3")

    does anyone know how can i fix this ?