
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (66)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...)
Sur d’autres sites (6303)
-
How to setup ffmpeg center crop filter in NodeJS ?
10 mars 2021, par AnirudhI referenced the code from this answer on SO - https://superuser.com/questions/613002/ffmpeg-how-to-create-cropped-thumbnails


Here is my code in NodeJS


await spawnSync(
 "/opt/ffmpeg/ffmpeg",
 [
 "-i",
 videoUrl,
 "-vf", 
 "crop=400:400:0:0",
 "-vframes",
 "1",
 "-ss",
 "00:00:01.000",
 "/tmp/"+fileName
 ]
 );

// read thumbnail image from disk
const thumbnailFile = readFileSync("/tmp/"+fileName);



But the
thumbnailFile
returns empty. What's the right syntax for passing crop filter here ?

-
ffmpeg : map audio and subtitle stream of (different) specific language only
24 juillet 2019, par RocketNutsI have a bunch of video files with multiple audio and subtitle streams (in different languages). The streams contain metadata specifying which stream is which langauge. I want to copy all files but maintaining only the spanish audio streams, and the english subtitle streams (and the video stream of course).
Unfortunately, not all videos contain the same language streams at the same index, so instead of using something like
-map 0:a:2
I am trying to select the streams based on metadata.However, if I try the following : (based on answers found in similar questions like this and this)
ffmpeg -i input.mkv -map 0:v -map 0:a:m:language:spa -map 0:s:m:language:eng -c copy output.mkv
It still copies the first audio and first subtitle stream, no matter which stream is which language. In other words, this behaves just like
-map 0:v -map 0:a:0 -map 0:s:0
which isn’t what I need.Is there a different
map
argument I can use to make sure it picks only the spanish audio stream and only the english subtitle stream, regardless of their index in the input file ? -
parrot AR.drone 2.0 TCP video stream decoding into OpenFrameworks
12 janvier 2014, par gabriellaI am trying to get video stream from the AR drone into an open frameworks application to do OpenCV analysis using OF.
I was to use http://www.chrishjorth.com/files/ofvideostream.zip which I found http://forum.openframeworks.cc/t/gstreamer-streaming-questions/6325/2But nothing is working. Has anyone done this ?