
Recherche avancée
Autres articles (98)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang 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. -
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 ;
Sur d’autres sites (10467)
-
Split a video to multiple chunks according to multiple starting and ending frame indices
7 octobre 2015, par JonAre there any tools (like
FFmpeg
orOpenCV
) can split a video into multiple chunks according to some specific starting and ending frame indices ? For example, given(0,20),(21,33),(40,60)...
, each tuple means a starting and ending frame indices pair for a chunk, and the neighbor chunks might not adjoin.Note that, the number of chunks might be large. For example, given a 1 hour video, there might be 1500 splits.
-
How to set max bitrate and max frame rate in ffmpeg ?
28 août 2014, par Swapnil DalviI am using ffmpeg to convert my mp4 format video with Specific set values :
"audio_bitrate" : 128,
"audio_sample_rate" : 44100,
"height" : 720,
"width" : 1280,
"max_frame_rate" : 30,
"max_video_bitrate" : 1500
How to set limit to frame rate and bitrate ?
I want to know how to write command with these limitations ?thanks in advance
-
How to use ffmpeg to stream x11 via netcat ?
28 janvier 2015, par alasinThese are the commands I’m trying to use
Server side :
ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0+10,20 -f avi - | nc -l 1500
Client side :
nc <server ip="ip"> 1500 | mplayer -vo x11 -cache 3000 -
</server>It seems to be streaming on the server side but client is not able to view the stream.