
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (61)
-
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (10077)
-
Run ffmpeg on windows
14 juillet 2020, par Nikola LukicI got successed on macos and linux with :


Linux :


ffmpeg \
 -f v4l2 \
 -framerate 25 -video_size 640x480 -i /dev/video0 \
 -f mpegts \
 -codec:v mpeg1video -s 640x480 -b:v 1000k -bf 0 \
 http://localhost:8081/supersecret



MacOS test :


ffmpeg -f avfoundation -framerate 30 -video_size 640x480 \
 -i "0" -f mpegts -codec:v mpeg2video -s 640x480 -b:v 1000k \
 -bf 0 http://localhost:8081/supersecret



I already installed ffmpeg on windows a just need correct command.


My error log is :




/dev/video0: No such file or directory




-
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 ?


-
Tell pkg-config where to find packages on windows
13 septembre 2016, par WirflBirflI want to use the Haskell ffmpeg library under windows so I tried to install it via cabal.
After downloading and extracting ffmpeg shared (64bit) version to C :\FFmpeg cabal complained that pkg-config was not installed.
I downloaded it and moved it to the bin folder of MinGw. Now cabal complains that it can not find the pkg-config package libavutil.First part of the question :
What is a pkg-config package ? Is it just the dll that comes with the shared version of ffmpeg ?Second part :
I know pkg-config uses .pc files to describe where to look for packages and it uses the PKG_CONFIG_PATH variable to find .pc files. So how would a .pc file look when the libavutil dll is located in C :\FFmpeg\bin ?PS : The dll in FFmpeg\bin is named avutil-55.dll
Thanks