
Recherche avancée
Autres articles (112)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
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 (...) -
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 (...)
Sur d’autres sites (12532)
-
FFMPEG concate two m4wa file android
12 juin 2017, par Dimpal Singhffmpeg -i concat:/storage/emulated/0/Music/out.mp3|/storage/emulated/0/Music/in.mp3 -acodec copy /storage/emulated/0/Music/out_.mp3
Thanks in advance. I’m using this command to concate two audio files in android using ffmpeg. but it is going in failure callback.Please help me to get rid from this.
-
FFmpeg set playing buffer to 0
8 janvier 2015, par Mihai GheteI’m using FFmpeg to play RTMP streams inside an iOS application. I use
av_read_frame
to get the audio and video frames. I need the latency to be as small as possible at all times, but if there’s a bottleneck or the download speed decreases,av_read_frame
is blocked. Of course, this is how it should work. The problem is that FFmpeg waits too much. As much as it needs to fill its buffers. I need to set those buffers to a value close to 0. Right now, I’m dropping buffered packets "manually" to get the latency at the initial value. The result is the desired one, but I’d wish FFmpeg won’t buffer in the first place...Can anyone help me with this ? Thanks in advance.
-
FFMPEG "-to" option won't stop encoding at the implied time
11 janvier 2018, par Saber KarimiI’m using ffmpeg to cut and covert a part of a long video but when using the "-to" option ffmpeg keeps encoding till the end of the video and wont stop.
Here’s my command :
ffmpeg -ss 00:22:59 -i input.mkv -to 00:23:15.5 -c:v libx264 -c:a aac output.mp4
if i change to "-t" and enter my desired duration, problem goes away. but since i have a very long video and many tasks i need to use "-to" which is easier for me.
Thanks in advance.