
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (111)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (10307)
-
Revision 87599 : $GLOBALS[’visiteur_session’] au lieu de global $auteur_session ; et ...
22 février 2015, par kent1@… — Log$GLOBALSvisiteur_session ? au lieu de global $auteur_session ; et $auteur_session
Indentation / Formatage -
avformat/matroskaenc : Fix writing of markers
28 août 2023, par Steinar H. Gundersonavformat/matroskaenc : Fix writing of markers
When the marker writing code was merged from libav to FFmpeg
in dc62016c, it failed to take into account that the meaning of
cluster_pos had changed in bda5b662 ; in particular, the special
value for “I'm not currently working on a cluster” had changed
from 0 to -1. This makes the avio_write_marker() call never
be called. Update the if statement to fix it.Fixes : Ticket9843
Signed-off-by : Steinar H. Gunderson <steinar+ffmpeg@gunderson.no>
Signed-off-by : Martin Storsjö <martin@martin.st> -
Add multiple overlapping audio files to a video [duplicate]
15 juin 2024, par JTinkersEssentially, I'm trying to achieve this :



The only problem with that is - I'm using ffmpeg programatically, meaning - there won't be any predefined sounds at predefined times, instead - I have code that generates these and executes ffmpeg with the following arguments :


-f concat -r 60 -safe 0 -i {VIDEO_OUTPUT_PATH}/{fileName}.txt
{audioArgs}
-c:v libx264 -preset fast -crf 23 -vf \"scale=1080:1920,format=yuv420p\"
-c:a aac -b:a 192k
-af \"afade=t=out:st={totalSeconds - 3}:d=3\"
{mapArgs} 
-async 1 -movflags +faststart -t {totalSeconds} {outputPath}"



Presumably, if there are 3 sounds (like on the image), mapArgs will be replaced with :


-map 0 -map 1 -map 2 -map 3



and audioArgs will be replaced with :


-itsoffset 0 -i bg.mp3 -itsoffset 13 sound1.mp3 -itsoffset 37 sound2.mp3



However, it seems to be playing background music and the video only - no other sounds.