
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (86)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (14286)
-
Embedding Metadata to H.264 encoded file
7 septembre 2012, par kerim yucelI am currently developing an application which produces certain metadata with respect to preview frames coming from the camera. I can see this metadata being produced properly and I have no problems here.
However, I have to embed this metadata to these frames of interest (frames are processed by a native algorithm to produce this metadata). I am using ffmpeg with x264 to encode the frames into H.264. I have checked x264.h and some documentations but failed to find what I seek.
My question is ; is there any unused portion of H.264 syntax that I can embed my metadata to encoded frames ?
I hope I was clear enough. Thanks in advance.
-
ffmpeg : cut from left (with -ss) - incorrect result
20 novembre 2018, par Kirill ZhirnovI have an auto generated video from image (30 secons) :
ffmpeg -loop 1 -i img1.png -f lavfi -i anullsrc -pix_fmt yuv420p -c:v libx264 -c:a aac -ar 44100 -ac 2 -t 30 img.ts
I need to cut it. If I cut it from right (e.g from 0 seconds to 5) - it works fine :
ffmpeg -ss 0 -i img.ts -to 5 -c copy cropped.ts
But if I want to cut it from left (e.g from 5 second to 8) - the result is damaged video :
ffmpeg -ss 5 -i img.ts -to 8 -c copy cropped.ts
What should I do to fix it ?
Thanks in advance !
-
AVI merging with FFmpeg truncated
6 juin 2012, par Masud RahmanI was using FFmpeg to merge two avi files which were converted to AVI from wmv. The conversion from wmv to avi worked fine, but when I am going to merge those two avi files, some part of the longer video is truncated. Also if the first video is without sound, then the merged video is not containing sound at all. What may be the fix ? Please anybody with FFmpeg expertise, help me.
Note : Command for merging
ffmpeg -isync -i "concat:file1.avi|file2.avi" -f avi -c copy merged.avi
Thanks in advance