Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (11427)

  • Anomalie #4338 : job / effacer les caches périmés

    27 mai 2019, par jluc -

    Plus simplement, une alternative au job serait un ajout dans la doc : « De temps en temps, chaque année par exemple, il faut vider tout /tmp, via ftp ou ssh. » Mais je n’ai pas trouvé de page dédiée spécifiquement à la maintenance de SPIP.

    Donc dans l’article sur les mises à jour https://www.spip.net/fr_article1318.html : « Profitez en pour vider tout le répertoire /tmp, par FTP ou par SSH. C’est nécessaire pour effacer certains vieux caches devenus inutiles et qui ne sont plus gérés par spip. »

  • How to add an image frame to the end of a video using FFmpeg without re-encoding ?

    17 juillet 2023, par hello world

    I'm looking for a way to add an image frame to the end of a video using FFmpeg without re-encoding the video. The image file I want to use as the frame has the same width and height as the video file. I've tried using the following command :

    


    ffmpeg -i input.mp4 -loop 1 -i frame.jpg -c:v copy -c:a copy -shortest output.mp4


    


    However, this command seems to re-encode the video, which is not desirable as it increases processing time and may lead to some loss in quality.

    


    Is there a way to achieve this without re-encoding the video and only overlaying the image frame onto the video ? I'd greatly appreciate any insights or alternative commands to accomplish this task efficiently.

    


    Thank you in advance for your help !

    


  • React Native alternatives to ffmpeg-kit-react-native for adding text overlays to videos ?

    3 avril, par Sanjay Kalal

    I’m developing a React Native app where I need to add text overlays to videos. I was using ffmpeg-kit-react-native, but this library is deprecated, I am looking for efficient alternative and add overlay text on video and then share it with overlay text.

    


    Are there any React Native libraries or native integrations that can efficiently add text overlays to videos without using ffmpeg ?