
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (65)
-
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 (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (7805)
-
ffmpeg how to start encoding at live point (not from beginning)
9 avril 2021, par JintorIs there a way with ffmpeg to start encoding at "live point" (in other words at last encoded frame...)


let met explain : 2 ffmpeg process


[1] x11grab that is being generated that started a 2:00 pm.... and still continue live (I don't want to stop and continue encoding live)


[2] restream the [1] but at live point (at where it is encoding now) not from start...


If [2] is being triggered at 2:15 pm, it will load the first frame of [1] (start to encode from 2pm)


but I want that it load the last few frames of [1] as a starting point (2:15pm)...


I know that I could
ffmpeg -i -ss
but I have to specify a x number of seconds after-ss
...

is there a better way ?


-
Point to the tagged versions for downloads.
12 juin 2013, par blueimpPoint to the tagged versions for downloads.
-
Merging audio at specific point with ffmpeg
16 octobre 2015, par DeepuI was trying to merge audio with ffmpeg with the following command but the audio is merging at starting point.
ffmpeg -i inputvideo.mp4 -i otheraudio.mp3 -filter_complex "[0:a]atrim=start=0,asetpts=PTS[aud1] ;[1:a]atrim=0:250,asetpts=PTS+100/TB[aud2] ; [aud1][aud2]amix=inputs=2[aout]" -map 0:v -map "[aout]" -crf 24 -pix_fmt yuv420p -c:v libx264 -c:a aac -strict -2 -ac 2 finaloutput.mp4
with this command it is merging audio streams but not specified point of time.