
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (71)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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, parPar 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 (9234)
-
an error occurred while processing this directive error got after watermark create on video using ffmpeg
21 avril 2017, par sajin RThis is my code for create water mark on video using ffmpeg :
$cmd = "ffmpeg -filter_complex 'overlay=10:10' -i $video_dir -i thumbnail/watermark.png input/test2.mp4";
$return = `$cmd`;After that result got error :
an error occurred while processing this directive
How to solve this ?
-
FFMpeg - How to add a diagonal watermark text to a video
5 février 2016, par ramWith the following command i am able to add a horizontal text to the video.
ffmpeg -re -i ./input.mp4 -vf "drawtext="fontsize=15:fontfile=FreeSerif.ttf:text="WATERMARK TEXT":y=h/2:x=50:fontcolor=green:fontsize=40"" -f mp4 ./output.mp4
Will it be possible for me to add the text diagonally to a video using drawtext filter ? what is the best way to add a diagonal text to a video using ffmpeg ?
Purpose is to add diagonal water mark text to the video
-
Image scaling boundaries in FFMEG
6 mars 2018, par Pedro PereiraI am implementing my own version of the bilinear and bicubic scaling algorithms to understand how ffmpeg does the scaling. So, I compare the results I get with the results of the ffmpeg. A couple days agora I had trouble implementing the bilinear version because my bilinear scaled images were different from the ffmpeg ones. With the help of people in the IRC chat I understood that the ffmpeg duplicates the nearest original pixel when the index of the neighboring pixels to interpolate is out of the original image bounds.
In the same perspective, what does the bicubic version in ffmpeg does to out of the original bounds pixels ? I tried duplicating the nearest original pixel (like in bilinear) and my scaled image is not the same as the ffmpeg one.
Do I have to something like this ? Fill the boundaries of a matrix using Bicubic interpolation