
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 (8904)
-
How do I fix my ffmpeg command to stop the Terminal from hanging ?
29 juillet 2017, par ksyI am attempting to use
ffmpeg
to concatenate video files together into a single file,video/video_after.mp4
.I ran different tests of video length, and it seems the issue isn’t correlated with the duration of the video.
When I run the following command, my terminal hangs and the operation never completes — ss there something wrong with the command I am running here ?
ffmpeg -i video/video_after0.mp4 -i video/video_after1.mp4 -i video/video_after2.mp4 -i video/video_after3.mp4 -i video/video_after4.mp4 -i video/video_after5.mp4 -i video/video_after6.mp4 -i video/video_after7.mp4 -i video/video_after8.mp4 -i video/video_after9.mp4 -i video/video_after10.mp4 -i video/video_after11.mp4 -i video/video_after12.mp4 -i video/video_after13.mp4 -i video/video_after14.mp4 -i video/video_after15.mp4 -i video/video_after16.mp4 -i video/video_after17.mp4 -i video/video_after18.mp4 -i video/video_after19.mp4 -i video/video_after20.mp4 -f concat -safe 0 -i video/video_after21.mp4 -y -c copy video/video_after.mp4
-
How to pipe two separate outputs of ffmpeg to separate programs ?
3 octobre 2018, par Ryan GriggsI am running a ffmpeg command which takes a single video input (h.264) and 1) outputs a screen grab every 5 seconds and 2) transcodes the original video to a different bitrate/profile/etc.
I would like to pipe the output of each operation to a separate program. Currently, I can pipe the last output to a program by adding a trailing ’dash’ (-) at the end of the command.
However, I can’t figure out how to pipe both outputs to different programs simultaneously. Any help appreciated.
Example command which pipes the last input to another program :
ffmpeg -i video.mp4 -r 1/5 test%03d.jpg -vcodec h264_omx -r 8 -b:v 512k - | ./myprogram
-
ftp: fix interrupt callback misuse
16 juillet 2013, par Lukasz Marekftp: fix interrupt callback misuse
FTP protocol used interrupt callback to simulate nonblock
operation which is a misuse of this callback.This commit make FTP protocol fully blocking and removes
invalid usage of interrutp callbackAlso adds support for multiline responses delimited with dashes