Advanced search

Medias (91)

Other articles (46)

  • Installation en mode ferme

    4 February 2011, by

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

    18 February 2011, by

    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 June 2013, by

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

On other websites (7091)

  • ffmpeg to cut beginning and fade in audio

    31 July 2024, by cannyboy

    I've got a bunch of spoken word mp3 files, which all have the same intro talking and music, and then the real content begins. So it goes roughly like this:

    


    00:00 Standard intro spoken word
00:20 Standard intro music
00:35 The content


    


    The timings are not always the same (can vary by 5 secs). So I'd to cut the first 25 seconds and then fade in the next five seconds. And then output the file in the same mp3 format. Is this possible with ffmpeg?

    


  • Anomalie #4707 (Nouveau): SPIP n’indique plus qu’une nouvelle version disponible

    29 March 2021

    La dernière version SPIP 3.2.10 est sortie mais on ne le signale pas dans le backoffice

    si on lance le genie de mise à jour sur un SPIP 3.2.7 ou SPIP 3.2.9 par ex. on ne trouve rien.

    pourtant le fichier archives.xml semble bien renseignée avec archives/spip-v3.2.11.zip
    https://files.spip.net/spip/archives.xml

    en regardant le code, cela a l’air de coincer au niveau de la regex
    https://git.spip.net/spip/spip/src/branch/3.2/ecrire/genie/mise_a_jour.php#L123

    je ne sais pas s’il y a qqchose de mal formaté ou non.

  • How to reproject and join these two clips with ffmpeg?

    20 January 2023, by jumpjack

    I have two videoclips embedded in this single video:

    


    https://sci.esa.int/web/cassini-huygens/-/39218-huygens-descent-to-titan-surface

    


    Download lo-res: link

    


    The timings which I calculated to sync the two clips are:

    


      

    • 01:33.233 - 02:24.133
    • 


    • 02:33.700 - 03:24.600
    • 


    


    I want to join them into a single view; I thought that cropping the video between the dots which mark east and west was enough, but it is not: I tried this, but with terrible results:

    


    #echo off
# Cut east and west clips:
@echo cut east...
ffmpeg -ss 01:33.233 -to 02:24.133 -i %1 -vf "crop=900:450:73:0, pad=w=iw:h=2*ih:x=0:y=ih:color=black" -y east-crop.mp4
@echo cut west...
ffmpeg -ss 02:33.700 -to 03:24.600 -i %1 -vf "crop=900:450:73:0, pad=w=iw:h=2*ih:x=0:y=ih:color=black" -y west-crop.mp4

@echo merge...
ffmpeg -i west-crop.mp4 -i east-crop.mp4 -filter_complex hstack=inputs=2 -y combined.mp4


    


    I think I have also to reproject... but I have no idea of which is the projection used.

    


    Any suggestion?

    


    Example east/west frames:

    


    east

    


    west

    


    I would like to obtain a single equirectangular image which reprojects into a full sphere when seen into a VR viewer.

    


    Instead, I am getting this:

    


    enter image description here