
Recherche avancée
Autres articles (112)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (12562)
-
How to display animated svg over video using ffmpeg ?
27 mars 2023, par Shivam guptaI am trying to show animated svg above the video.
I am able to show svg over video but it is static means animation is not visible.


I am able to achieve this by enabling enable-librsvg flag in ffmpeg and used below command to generate output


./ffmpeg -i ~/Downloads/video2.mp4 -i ~/Downloads/plant-2.svg -filter_complex "[0:v][1:v] overlay=0:0" -c:a copy output.mp4



I am not sure what i am doing wrong due to which instead of animated svg static svg is coming.


-
How to Embed CEA-608 Subtitles in Video using FFMPEG
25 septembre 2018, par Yogesh AgarwalHow can i embed CEA 608 subtitles via ffmpeg in a video ? I have SRT file and i can embed that via ffmpeg but it doesnt show up in facebook. It requires a CEA 608 Format of subtitles to be embedded inorder to show up in streams.
I am quite clueless here. I found libcaption plugin that can do it, but i am not sure how to install it as my repo doesnt have it. Any Pointers would greatly help me ! :)
There is one more plugin
libass
which can hardcode but i am not comfortable using it.
-
A video player based on QtAV with Direct2D / OpenGL rendering
22 juin 2015, par ashikthomasI’m developing a video player in Qt C++ using QtAV. QtAV uses ffmpeg internally. I need to show semi transparent overlays both my watermark logo and subtitles. I’m writing the application for windows. I use OpenAL library. OpenGL and Direct2D are the choice for renderers.
If I use OpenGL renderer, it works fine in some systems. The overlay works fine. But in some other systems the whole application will be just a black window. Nothing else I can see.
If I use Direct2D, the overlay wont work. And the renderer is a bit slow. But it works on all systems, without this overlays.
I have no code to show here because its not the coding issue. Even the examples in QtAV are not working. I need to find a way to show the overlays using Direct2D renderer OR find a solid way to use OpenGL rendering on all systems without fail.