Recherche avancée

Médias (91)

Autres articles (100)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (9986)

  • getting error while compiling ffmpeg

    30 mars 2013, par Vikram Mahal

    I am compiling ffmpeg for android in windows with cygwin.

    I am using-
    1. android ndk r5
    2. ffmpeg-0.10.3
    3. cygwin

    Everthing works fine but when i run last command then after few minutes it gives this error-

    License : LGPL version 2.1 or later

    Creating config.mak and config.h...

    libavutil/avconfig.h is unchanged

    WARNING : C :/android-ndk-r5-windows/android-ndk-r5//toolchains/arm-linux-androideabi-4.4.3/prebuilt/windows/bin/arm-linux-androideabi-pkg-config not found, library detection may fail.

    WARNING : Compiler does not indicate floating-point ABI, guessing soft.

    config.log:1 : * multiple target patterns. Stop.

    config.log:1 : * multiple target patterns. Stop.

    C :\android-ndk-r5-windows\android-ndk-r5\toolchains\arm-linux-androideabi-4.4.3\prebuilt\windows\bin\arm-linux-androideabi-ld.exe : cannot open output file ./android/armv7-a/libffmpeg.so : No such file or directory

    please help me out to overcome this problem.

    thanks.

  • Getting errors compiling ffmpeg

    15 janvier 2024, par Vikram Mahal

    I am compiling ffmpeg for android in windows with cygwin.

    


    I am using-

    


      

    1. android ndk r5
    2. 


    3. ffmpeg-0.10.3
    4. 


    5. cygwin
    6. 


    


    Everything works fine but when i run last command then after few minutes it gives this error-

    


    License : LGPL version 2.1 or later

    


    Creating config.mak and config.h...

    


    libavutil/avconfig.h is unchanged

    


    


    WARNING :
C :/android-ndk-r5-windows/android-ndk-r5//toolchains/arm-linux-androideabi-4.4.3/prebuilt/windows/bin/arm-linux-androideabi-pkg-config
not found, library detection may fail.

    


    WARNING : Compiler does not indicate floating-point ABI, guessing soft.

    


    config.log:1 : *** multiple target patterns. Stop.

    


    config.log:1 : *** multiple target patterns. Stop.

    


    C :\android-ndk-r5-windows\android-ndk-r5\toolchains\arm-linux-androideabi-4.4.3\prebuilt\windows\bin\arm-linux-androideabi-ld.exe :
cannot open output file ./android/armv7-a/libffmpeg.so : No such file
or directory

    


    


    please help me out to overcome this problem.

    


    thanks.

    


  • FFMPEG crop boundaries animation

    28 septembre 2021, par VlFedotov

    I'm looking for a way to make crop filter params depends on current time.

    


    Now I have 2 videos - white and aqua squares in one split output video, and this code works fine :

    


    ffmpeg -i out/i1.mp4 -i out/i2.mp4 -filter_complex "[0:v]crop=iw/2:ih:0:0[left];[1:v]crop=iw/2:ih:ow:0[right];[left][right]hstack" out/generated.mp4


    


    My question is - how to make the border between two videos floating, animated ? For example from left side of output vide to the right ?

    


    I already tried to use t param, e.g. like this :

    


    ffmpeg -i out/i1.mp4 -i out/i2.mp4 -filter_complex "[0:v]crop=iw/2+t:ih:0:0[left];[1:v]crop=iw/2-t:ih:ow:0[right];[left][right]hstack" out/generated.mp4


    


    But it throws an error :

    


    [Parsed_crop_0 @ 0x7fa46060eec0] Error when evaluating the expression 'iw/2+t'

[Parsed_crop_0 @ 0x7fa46060eec0] Failed to configure input pad on Parsed_crop_0

Error reinitializing filters!

Failed to inject frame into filter network: Invalid argument

Error while processing the decoded data for stream #1:0


    


    Can anybody help me to solve this ? Or explain - why it isn't possible ?