
Recherche avancée
Autres articles (87)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
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.
Sur d’autres sites (3844)
-
Unexpected pause in video after concatenating multiple mp4 files using ffmpeg
21 janvier 2019, par Ajit MauryaI am trying to concatenate more than 90 small MP4 videos for a single MP4 file.
i got code reference from here
, i successfully got an output.mp4 file, but i tried to play video, there is a long pause between videos, searched and got this here is the link, but failed.CMD CODE : ffmpeg -y -f concat -i inputs.txt -c copy output.mp4
inputs.txt is like
file video_1.mp4
duration 17
file video_2.mp4
duration 25
file video_3.mp4
duration 45
file video_4.mp4
duration 15
file video_5.mp4
duration 10
file video_6.mp4
duration 20
file video_7.mp4
duration 25
file video_8.mp4
duration 20
file video_9.mp4
duration 15
file video_10.mp4
duration 12Please help me.
-
Nomenclature #4519 : Renommage de terminologie (blacklist / whitelist)
16 juillet 2020Et linux aussi :
- https://seenthis.net/messages/867414Avec une liste proposée de terminologies :
Proposed alternatives for master/slave include :¶
- primary/secondary
- main/replica or subordinate
- initiator/target
- requester/responder
- controller/device
- host/worker or proxy
- leader/follower
- director/performer
Proposed alternatives for blacklist/whitelist include :¶
- denylist/allowlist
- blocklist/passlist
-
FFMPEG : Generate 7.1 channel audio file with the longest time of input file
10 juin 2020, par AnthonyI want to use ffmpeg to generate 7.1 channel audio file from 8 different audio files.
But I found the output file's duration is decided by the input file with shortest duration.
I didn't find any parameter to auto-pad the shorter audio file or choose the longest duration as final duration.



I already have seen the offlical document as below.
https://ffmpeg.org/ffmpeg-all.html
https://trac.ffmpeg.org/wiki/AudioChannelManipulation
But nothing is helpful.



This is the command I use right now :



ffmpeg -i fl.wav -i fr.wav -i fc.wav -i lfe.wav -i bl.wav -i bl.wav -i sl.wav -i sr.wav -filter_complex "[0:a][1:a][2:a][3:a][4:a][5:a][6:a][7:a]join=inputs=8:channel_layout=7.1[a]" -map "[a]" output.wav