
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 (71)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...)
Sur d’autres sites (4811)
-
FFMPEG convert webm to mp4 not working
30 juillet 2019, par RussellHarrowerI have upgrade to the latest ffmpeg which supports webm, but I can’t seem to convert webm to mp4
ffmpeg -i filea.webM -sameq filea.flv
I am getting this error
swScaler: Unknown format is not supported as input pixel format
Cannot get resampling contextI am not sure what to do.
-
convert using ffmpeg without exec
26 avril 2017, par Ronan DejheroI have Windows XP, Apache, PHP 5.3 and ffmpeg working fine. I need to convert flv to avi or vice versa without using the
exec()
command. Is this possible ?Thank you.
edit :
i hope someone could edit the ffmpeg source and implement an exec function into the php extension so we could just add the parameters to a function (ex $fmpeg->exec(’exec parameters here’) ; ) so the exec is executed directly from the extension ...and compile those file :p
-
ffmpeg : convert and keep audio tracks
14 septembre 2014, par raxeri have some video files in H.264 codec and DTS audio.
My goal is to convert the audio tracks (mostly 2 tracks, english and german) to AAC, but i don’t want to lose the DTS audio tracks.I tried this command, but it only converts the tracks and replaces the DTS tracks
ffmpeg -i input.mkv -map 0 -c:v copy -c:a libfdk_aac -b:a 128k -c:s mov_text output.mp4
What should i do to have the DTS and AAC tracks in the output file ?