
Recherche avancée
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...)
Sur d’autres sites (11977)
-
FFmpeg - concat multiple videos,with same resolution,some has audio,some without
24 septembre 2018, par wensefuI’m trying to concat some videos with same resolution and same video codec
into one single video using ffmpeg Concat demuxer ,while some video has audio,some without.but I get result of a whole silent video,is there something wrong I did ?
Many thanks in advance.
-
Ffmpeg desyncing with FFSource
28 janvier 2014, par Ismaw34i don't know how much time i spent doing the batch to stream with twitch, i made a batch file for streaming, but the audio and the video are desyncing over time.
The batch im using is this :
http://pastebin.com/NEz2GvyjI dont know if my pc is too old for streaming or if is something else.
With XSplit the quality is pixelated a lot.
Can't use OBS.
With FFSplit is the same as above.Thanks in advance.
Ismaw34
EDIT :
It appears that the new batch is working now. Thanks for all the visits, you can use the batch too. -
FFMpeg : how to use between() to select last second ?
13 mai 2019, par rcpinheiroI’m trying to apply a caption using drawtext that should disappear one second before the video end :
ffmpeg -i input.mp4 -vf "drawtext=enable='between(t,0,5)':fontfile=font.ttf:text='Some caption':x=60:y=640:fontsize=40:fontcolor=#f0f0f0@0.9" -vcodec libx264 -crf 27 -preset ultrafast -strict -2 -acodec copy output.mp4
The problem is that I don’t know the video length beforehand. I’ve tried using ’between(t,0,-1)’ but it doesn’t work, the caption never shows up.
Anyone knows if is there a way to do this without having to open the video first to check length and only after that draw the caption ?
Thanks in advance !