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

  • ffmpeg overlay two video second video transparent visible sub-title

    18 octobre 2020, par cleanguy

    I have two video : video1 without subtitle and video2 with sub-title burned video I want to merge overlay and put the second video2 transparent video and leave only the white sub-title that appears visible it is possible with ffmpeg

    


  • ffmpeg split video's audio/video sync problem

    30 janvier 2019, par Jabs

    My problem is that when i have split one video with equal length by -ss and -t ffmpeg command then in all chunk’s audio are drifts(means only audio play well but video display after 2 or 3 seconds - means video is paused or async). I want to resolve splitted videos audio/video sync problem.

    Can anybody help me to resolve this kind of issue ?

  • Video is not clear after using FFMPEG4ANDROID compress video

    22 juillet 2016, par J.Miller

    I am building an app where i need to compress video before uploading it to server. the video without compressing is about Five minutes,60M,Android video bit 2x1024x1024,640*480. Now I am using FFMPEG library to compress video http://androidwarzone.blogspot.co.il/2011/12/ffmpeg4android.html .The following is command commandStr = "ffmpeg -y -i " + url + " -strict experimental -vf crop=480:480:0:0 -s 480x480 -r 30 -aspect 1:1 -ab 44100 -ac 1 -ar 22050 -vcodec mpeg4 -b 300k " + demoVideoFolder + "out.mp4" ;. successful but not clear at all. here is my question : is there only way to compress video by reducing bitrate ? I hope to get video after compressing is as same as the original video. is anyone give me some advice ? thanks !