
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (68)
-
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 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (...)
Sur d’autres sites (7946)
-
Fluent FFMPEG complex filter to split file into multiple outputs
26 octobre 2020, par lowcrawlerIt appears possible to have multiple outputs from a single FFMPEG command : ffmpeg overlay on multiple outputs


I'd like to know how to do this in FFMPEG. I'm specifically using the complexFilter option in an attempt to split the video into 4 different sizes and place an overlay, and then save the 4 resulting files.


The code is my attempt to simply split the video into 4 and save it. I get the
Error: ffmpeg exited with code 1: Filter split:output3 has an unconnected output
error. I'm unsure how to connect the output to a file in fluent-ffmpeg.

let ffmpegCommand = ffmpeg() 
 .addInput(path.join(__dirname, PROCESSING_CACHE_DIRECTORY, "tempImage_%d.jpg"))

 .addOutput(outputPathFull)
 .addOutput(outputPathMed)
 .addOutput(outputPathSmall)
 .addOutput(outputPathThumb)


 .toFormat('mp4')
 .videoCodec('libx264')
 .outputOptions('-pix_fmt yuv420p')
 .complexFilter([
 {
 filter: 'split', options: '4',
 inputs: ['0:v'], outputs: [outputPathFull, outputPathMed, outputPathSmall, outputPathThumb]
 },
 ])



When I flip the outputs and put them below the complexFilter, I get 4 files - one with the appropriate quality (and 4x bigger than expected) and the others in very low quality.


-
h264_parser : don’t stop on SPS_EXT in split
31 octobre 2014, par John Stebbins -
Using ffmpeg to split the duration of 360 video files [closed]
14 décembre 2022, par bloodstarI run this code to split normal mp4 files into 5 minute chunks however when i execute 360 video files, the videos are then converted into a normal video (360 flat view) after running this code :


@for %%I in (%*) do @ffmpeg.exe -i "%%~I" -c:v copy -c:a aac -segment_time 00:05:00 -f segment -reset_timestamps 1 "%%~nI_%%03d%%~xI" && del "%%~I"



What am i doing wrong ? thanks