
Recherche avancée
Autres articles (86)
-
À propos des documents
21 juin 2013, parQue faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
Document bloqué en file d’attente ?
Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...) -
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 (9372)
-
Broadcast Live Streaming on a website with an added graphical overlay
14 avril 2016, par Mohit SainiI was doing some research on Live Streaming. I want to develop a solution where I will collect live streams from multiple remote cameras on my website, modify the stream with a custom text banner (i.e. we have on news TV channel, football match) at the bottom and broadcast it to all.
I know there are Flash plugins available for video streaming and editing, but I want to build this web app to be mobile friendly and responsive.
HTML5 could be used to display multiple video streams on the website, but how can I add a text banner, graphs or any other frame on a running live stream ?
-
Flutter ffmpeg working with video files instead of paths
17 mai 2020, par lulliezyIs there a way for ffmpeg in flutter to work with files from
dart:io
package instead of paths, e.g. call a function passing the video file and getting a video file as output of the function ??


Also what are the benefits and/or downsides to just working with paths rather than actual files ?



Thanks in advance.



Platform : Mobile


-
How to add gif and text overlay on mp4 video using ffmpeg-full-gpl in android [duplicate]
11 février 2021, par Dnyaneshwar PanchalI used below ffmpeg command for add gif on mp4 video & it is working fine,


The question is different I have used ffmpeg gpl library for now the reason is getting video low very thats I have used this library.


int cmd= FFmpeg.execute(new String[]{"-y", "-i", "a.mp4", "-ignore_loop", "0", "-i", 
"storage/emulated/0/watermark/watermark.gif", "-filter_complex", "overlay=5:5:shortest=1", "-c:v", 
"libx264", "-r", "10", "-preset:v", "ultrafast", "b.mp4"});



But, I want to add gif with text also.
how to add text also in above command ? please help !

I used below library for ffmpeg,

implementation 'com.arthenica:mobile-ffmpeg-full-gpl:4.4'



Thanks in adv !