
Recherche avancée
Autres articles (88)
-
Amélioration de la version de base
13 septembre 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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...)
Sur d’autres sites (8271)
-
Cut audio / Video using ffmpeg on the server [on hold]
8 décembre 2016, par Mohammed HusseinI am rebuilding a project that I built with meteor js from scratch using asp.net mvc and c#
the project is basically used to cut audio and video given the start time and the end time using ffmpeg on the server,
but I am facing a problem in both projects,
if during the process of cutting the audio / video file i lost my internet connection the operation doesn’t complete. what i want is that the operation should complete and write the changes to the database and create the new file on the server despite the fact that i am no longer connected .
is that possible to do or not ?
-
ffmpeg build for x86 android
30 avril 2014, par DavidI´m trying to build ffmpeg for x86 on ubuntu, I have done it for arm correctly but in x86 i have this prob. Any idea how to fix it ?
line 57: /home/laptoop/Desktop/android-ndk-r9c/build/tools/make-standalone-toolchain.sh: No such file or directory
i686-linux-android-gcc is unable to create an executable file.
C compiler test failed.
If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "config.log" produced by configure as this will help
solving the problem.
CC libavfilter/af_aconvert.o
/bin/sh: 1: arm-linux-androideabi-gcc: not found
make: *** [libavfilter/af_aconvert.o] Error 127
make: *** Waiting for unfinished jobs....
CC libavfilter/af_aecho.o
CC libavfilter/af_adelay.o
/bin/sh: 1: arm-linux-androideabi-gcc: not found
/bin/sh: 1: make: *** [libavfilter/af_adelay.o] Error 127
arm-linux-androideabi-gcc: not found
make: *** [libavfilter/af_aecho.o] Error 127 -
How to write command line argument input redirection within a bash script ?
3 septembre 2013, par Serg ikSI'm putting together a bash script to run movie rendering jobs.
ffmpeg
expects a multi-line text file as one of the arguments for concatenation filter to join several files into one. Like this :ffmpeg -f concat -i mylist.txt -c copy output
There's also an option to write it all in a single line like so :
ffmpeg -f concat -i <(printf "file '%s'\n" A.mp4 B.mp4) -c copy Output.mp4
How do I write the latter for into a bash script, substituting the file names from other variables ? Tryed splitting the variables, but its not the one that works.
$A
and$B
variables contains paths to input files.#!/bin/bash
...
TMP_LIST=$(printf "file '%s'\n" ${A} ${B})
APPEND="${FFMPEG} -f concat -i <<< {${TMP_LIST}} -c copy ${OUTPUT}"
# run the concatenation:
$APPEND