
Recherche avancée
Autres articles (98)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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 (7775)
-
how to set effect on video in android programmatically ?
23 août 2017, par Mayank SugandhiI have video which is save in sdcard, now i want to apply the effect like black and white and etc. it’s functionality like editing in video which is already in photo editor or video editor applications.
now i want to that functionality in android programmatically ? when user choose black and white color in option then it should be response very quickly and change the effect of our video and save it sdcard.
i have find some solution for this like,
https://github.com/krazykira/VidEffects
but it has not save functionality of video and if i go through in
"FFMPEG" library then it is not responding very quickly ?how can i change the effect of video and save this video in sdcard ?
Thank You
-
how to set effect on video in android programmatically ?
12 mai 2016, par Mayank SugandhiI have video which is save in sdcard, now i want to apply the effect like black and white and etc. it’s functionality like editing in video which is already in photo editor or video editor applications.
now i want to that functionality in android programmatically ? when user choose black and white color in option then it should be response very quickly and change the effect of our video and save it sdcard.
i have find some solution for this like,
https://github.com/krazykira/VidEffects
but it has not save functionality of video and if i go through in
"FFMPEG" library then it is not responding very quickly ?how can i change the effect of video and save this video in sdcard ?
Thank You
-
FFmpeg Drawtext Fade Out Performance
16 août 2021, par Ben BoyleI am developing an application that makes system calls to FFmpeg.


I found a way to get the drawtext filter isolated and fade out, but the render time increased about 5x.


I just want to see if there is something obviously wrong with the command I came up with.


ffmpeg -y -i input.mp4 -c:v libx264 -filter_complex "[0]scale=1920:1080,format=rgba, split[base][text];[text]drawtext=fontfile=font1.ttf:text='Text1':fontcolor= 'white':fontsize=34:box=1:boxcolor=mediumpurple:boxborderw=50:x=0:y=690,format=yuva444p,drawtext=fontfile=./resources/fonts/font2.ttf:text='Text2':fontcolor='white':fontsize=26:x=0:y=725,fade=t=out:st=12:d=0.2:alpha=1[title];[base][title]overlay" -force_key_frames "expr:gte(t,n_forced*0.05)" output.mp4