Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (101)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (8433)

  • avutil/wchar_filename,file_open : Support long file names on Windows

    26 mai 2022, par softworkz
    avutil/wchar_filename,file_open : Support long file names on Windows
    

    Signed-off-by : softworkz <softworkz@hotmail.com>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/file_open.c
    • [DH] libavutil/wchar_filename.h
  • Anomalie #4342 (En cours) : Erreur 1071 de mysql : Specified key was too long ; max key length is 10...

    29 mai 2019, par b b

    Comme indiqué plus bas dans le thread que tu pointes, ton problème vient du fait que tu utilises MyISAM et non InnoDB cf https://stackoverflow.com/a/50689604

    J’hésite à répondre que c’est un bug de configuration de ton serveur SQL ou du plugin en question...

  • Compression in Android taking long time

    24 avril 2017, par NSR

    I am new to Video related operations. I am using [FFMPEG][1] to compress a video in my Android application.

    I am trying to compress a video of 50MB to 10MB by executing following command

    ffmpeg -y -i /videos/in.mp4 -strict experimental -s 640x480 -r 25 -vcodec mpeg4 -b 150k -ab 48000 -ac 2 -ar 22050 /videos/out.mp4

    Video compressing successfully, but it taking more than 150 seconds. I am unable find out how to reduce that time.

    I want to change this command to complete this process in less time.