
Advanced search
Other articles (99)
-
MediaSPIP 0.1 Beta version
25 April 2011, byMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
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 (...) -
Amélioration de la version de base
13 September 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
MediaSPIP v0.2
21 June 2013, byMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
On other websites (11377)
-
How do I use find and ffmpeg to batch convert a bunch of .flac files to .mp3?
30 April 2019, by KeithI have a directory with a bunch of .flac files that I need to convert to .mp3. I plan to use
ffmpeg
from the command line to do the conversions and I’d like to avoid doing this manually for every file. I’m familiar with thefind
command but I’m having difficulty using it with ffmpeg which requires both input and output filenames. I imagine using something likefind . -name "*.flac" -exec ffmpeg -i {}.flac {}.mp3 +
But of course this doesn’t work. For one thing it fails to strip prefixes and suffixes from the filename being passed to ffmpeg.
Please also note that the filenames include whitespace so the solution has to ignore whitespace successfully. I’m also on OS X having built ffmpeg with homebrew.
-
ffmpeg could not find codec parameter for stream 2
3 October 2017, by INJAS M T PI’m facing "could not find codec parameter for stream 2" when converting mkv file to mp4. I’m using filter_complex to place the watermark at bottom right. But I’m not facing this issue for all mkv files. I’ve tried -probesize 100 -analyzeduration 10000000. But no change.
Here is my command
ffmpeg -i i.MKV -i logo.png -probesize 100 -analyzeduration 10000000 -filter_complex 'overlay=x=(main_w-overlay_w):y=(main_h-overlay_h)' -y 2.mp4 2> videoError2.txt.
-
FFMPEG cannot find openCV while integrating modified HEVC
12 May 2017, by haider aliWe modified HEVC (open-source downloaded from bitbucket) encoder and have included some openCV libraries.
It works perfect on visual studio.Problem:
FFMPEG is unable to find openCV libraries.Please suggest us a solution?
Are there any other software in which we can integrate our customized HEVC library?