
Recherche avancée
Autres articles (23)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (5364)
-
How to use ffmpeg concat protocol with too many files ?
17 septembre 2015, par malcevHow can I use ffmpeg Concat protocol with so many files, that I cannot run it through cmd because of command-line string limitation ?
-
MPEG Transport Stream to RFB protocol framebuffer updates
30 mai 2018, par user3911119My requirement is to be able to generate frames from a video file, and create RFB protocol updates so that they can be viewed in vnc viewer.
I read that it is possible to record a vnc session using rfbproxy into a video file and replay it, though I could not find any code to do it.
How do I go about it ?
Is it possible to do the same using ffmpeg ?
-
FFMPEG use output of first command for concat protocol
15 décembre 2022, par RemsI'd like to use the ffmpeg concat protocol to concat two videos,


ffmpeg -i "concat:input1.ts|input2.ts" -c copy output.mp4



But I would like to avoid going through too many intermediate files, and I know we can redirect the output of a first ffmepg command to the input of a second one. But I don't if this is possible with the concat protocol


It would be something like this


ffmpeg first_command - | ffmpeg -i "concat:input1.ts|-" -c copy output.mp4



But I don't know how to make it work


Is it possible to achieve this ? Thanks