
Recherche avancée
Autres articles (57)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (8358)
-
FFMpeg : CFLAGS=-D__STDC_CONSTANT_MACROS ./configure where ?
24 avril 2013, par olidevI got this problem " 'UINT64_C' was not declared in this scope" while using the ffmpeg library for Eclipse running under Ubuntu.
After a while, I have found this solution : http://code.google.com/p/ffmpegsource/issues/detail?id=11
But I could not know how to this :
This should be fixed in our build system no matter what version of ffmpeg you're using. If you're still getting it, run configure like so :
CFLAGS=-D__STDC_CONSTANT_MACROS ./configure
and your problems should go away. This applies to other C++ programs using ffmpeg as well and not just to ffms2, but I can't guarantee that other programs won't break if you define that macro (they really shouldn't, though).Where can I run the configure ? from Terminal ? I tried with Terminal but it does not work.
Anybody has an idea how to run the configure ?
Thanks in advance and your help is much appreciate !
-
Is there any faster way of synchronize the Drive from Colab
18 novembre 2018, par jperezmartinI need to extract many frames of the videos of one dataset stored in Google Drive from colab code. I mounted drive with
from google.colab import drive
drive.mount('/content/gdrive')I am generating and saving the frames with
ffmpeg
library calling a subprocess.subprocess.call(["ffmpeg", "-i", src, dest])
or
subprocess.check_call(["ffmpeg", "-i", src, dest])
The files
.jpg
are uploaded in drive but not fast. And, at a certain point the synchronization stops, having executed the generation process on the whole dataset in colab. -
ffmpeg 'av_seek_frame()' not work in bink video
19 juillet 2020, par ghoflvhxjI trying to use ffmpeg, to play video in my game.


when i open .avi file 'av_seek_frame()' work fine.
but if change to .bik file, it never work.
the function just return 0(which mean success) and seek to start.


anyone who know about this problem ? :(
please tell me why...


i uploaded sample player and video.
this use ffmpeg and call av_seek_frame to seek like my program.
check it please.
https://drive.google.com/file/d/1DVrX3EOzjxSfEA4EYpeSREaE2RLhB28Q/view?usp=sharing