
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (78)
-
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
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 ;
Sur d’autres sites (9866)
-
How to concatenate multiple videos in ffmpeg JS using and Mute them as well in command line
22 janvier 2021, par Sultan HaiderUsing Command Line for FFMPEG in javascript to concatenate videos and muting them also. There was problem for me to find commands for JS in the following format


('-i', 'test.mp4', '-vf','reverse', 'out.mp4')


-
Android - merge videos taken with front and back cameras
3 mai 2023, par Raz LeshemI am having an orientation problem when merging videos taken with front and back cameras in portrait, recorded using Android CameraX.


This issue is explained here, but I am yet to find a working solution. I have tried multiple solutions, such as using mp4parser as suggested in the issue explanation, but the result is a that every alternate camera video is upside down.
I also tried using FFmpeg for android - mobile-ffmpeg.
Using ffmpeg Concat demuxer resulted in the same result as mp4parser did.


Concat demuxer command I used :
ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4


I also tried changing the rotation metadata of the videos to match before concatenating, similar to how it's done here, but that did not seem to have any effect on the end result.


Lastly, I used ffmpeg Concat filter. That solution took longer obviously because of the re-encoding of the video but it did fix the problem of the orientation of the videos, but the output video quality was poor.


Concat filter command :


ffmpeg -i front1.mp4 -i rear1.mp4 -i front2.mp4 \
-filter_complex "[0:v] [0:a] [1:v] [1:a] [2:v] [2:a] \
concat=n=3:v=1:a=1 [v] [a]" \
-map "[v]" -map "[a]" output.mp4



Has anyone found a solution on how to fix the orientation problem in android ? or maybe how can I keep the videos quality as much as possible when using the FFmpeg Concat filter to merge the videos ?


-
How do I combine two videos or add a logo using ffmpeg via VB.Net ? [on hold]
25 janvier 2014, par user3235437How do I combine two videos or add a logo using ffmpeg via VB.Net ?
EG :
copy file1.mpg /b + file2.mpg /b output.mpg /b
How do I execute this code through VB.Net ?
Thank you for giving example code.