
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (106)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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. -
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 (...)
Sur d’autres sites (6852)
-
FFMPEG Still image + Audio AAC - my video is longer than the audio
7 mai 2017, par Auré VatI am trying to create a video from a static jpg and an audio file in AAC from my windows machine using FFMPEG.
The code is working however the still image is longer than the audio and I cant find a way to isolate the issue.
Here is my code :
ffmpeg -hide_banner -loglevel panic -r 1 -loop 1 -i file.jpg -i audio.aac -c:a aac -b:a 160k -c:v libx264 -r 1 -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" -shortest output.mp4
Thank you,
-
ffmpeg video File incomplete error when downloaded chrome version 69
6 septembre 2018, par user3946910I am generating video in my protractor tests in Linux machine. The video is .mov format for chrome version 69.0.3497
.Downloading the .mov file give "File Incomplete Error" during download.jasmine.getEnv().addReporter(new VideoReporter({
baseDirectory: './test-output/videos',
saveSuccessVideos: true,
ffmpegCmd: '/usr/local/bin/ffmpeg',
ffmpegArgs: [
'-y',
'-r', '30',
'-f', 'x11grab',
'-s', '1280x1024',
'-i', process.env.DISPLAY,
'-g', '300',
'-vcodec', 'mpeg4'
]
})); -
Setting up rtsp stream on Windows
12 novembre 2015, par ChrisI am trying to set up an rtsp stream that can be accessed from an application. I have been experimenting with ffmpeg to realize that. I have succeded as far as I was able to stream from ffmpeg to ffplay but I could not load the stream in vlc for example. Here are the calls that I did from two different shells on the same machine :
ffmpeg.exe -y -loop 1 -r 24 -i test_1.jpg -vcodec libx264 -tune stillimage -f rtsp rtsp://127.0.0.1:1234/stream.sdp
ffplay.exe -rtsp_flags listen rtsp://127.0.0.1:1234/stream.sdpCan anybody explain to me what I would have to do to load the stream as a network stream using vlc ? Any help is appreciated.