
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...)
Sur d’autres sites (13628)
-
getruntime() exec() with double quotes in command
29 décembre 2012, par bruxI want to execute an
ffmpeg
command, the method I am using works with every command on my list except the following one which contains double quotes to set a filter (-vf) parameterffmpeg -i 2012-12-27.mp4 -vf "movie=bb.png [movie]; [in] [movie] overlay=0:0 [out]" -vcodec libx264 -acodec copy out.mp4
I have tried changing the quotes for single quotes with no luck. The command works at the android terminal with both single and double quotes.
The app I'm developing uses about 5
ffmpeg
commands, all work except this one, is this some bug ?I can't find a concrete solution to this problem, breaking the args into an array and then passing this to
runtime().exec()
as suggested elsewhere doesn't seem to work, or simply trying to escape the quotes with \" won't work.Both of the files referenced in the above command are located in the sdcard, I removed the concatenation of the command out so that things don't get messy, rest assured these commands work in a terminal when referencing the full paths to the files.
I contatenate the string passed to getRuntime().exec() using a stringbuilder and`getexternalstorageDirectory().getabsolutepath() to get the path to each file like I have been doing with previous commands when using the process class.I am using Jelly Bean 4.2 in case that is of any significance.
-
Upgrade ffmpeg (or rust) on OSX 10.12 cannot find make
22 septembre 2020, par gempTrying to
brew upgrade ffmpeg
on OSX 10.12 Sierra but when it arrived to installrust
I had the following error :

make: error: unable to find utility "make", not a developer tool or in PATH
xcodebuild: error: SDK "/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk" cannot be located.
clang: error: unable to find utility "clang", not a developer tool or in PATH



But
which make
gives/usr/bin/make
andxcrun make
is recognized and

ls -l /Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk
gives

lrwxr-xr-x 1 root wheel 10 Dec 21 2017 /Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -> MacOSX.sdk


How can I force the
rust
install to use/usr/bin/make
instead of the XTools one ? Or something else.

EDIT


I have
rustc 1.46.0
which is the dependency that Homebrew wants./configure --prefix=/usr/local/Cellar/rust/1.46.0 --release-channel=stable


-
How do I edit the PKG_CONFIG_PATH environment variable on windows ?
2 janvier 2024, par Project PowerPointI'm trying to use pkg-config to combine files from ffmpeg into a library so I can use them as such in my program. However, I can't seem to figure out how to get pkg-config to look in another location.


It's worth mentioning that I'm compiling this program into a node API addon for a node project, so I'm using pkg-config from NPM and CMake-js.


Currently, pkg-config looks in
C:/Strawberry/c/lib/pkgconfig


I want it to look in
C:/ffmpeg/lib/
as well.
I've tried looking for how to do this, but I can only find how to do it on linux.

In the one stackoverflow question which is similar, the link provided is broken : link to question , broken link provided


Otherwise, I find conflicting info saying pkg-config in windows doesn't consider PKG_CONFIG_PATH environment variable. I can't test this if I can't find out how to actually do it.


I've also tried copying the ffmpeg folder inside
C:/Strawberry/c/lib/pkgconfig
so it can find it. Even then, it 'cant find libavcodec.pc' despite being located in that folder (albeit several folders deep).

How do I change the environment variable for pkg-config ?