
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (67)
-
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (10859)
-
avformat/hlsenc : resend full url of the init fragment mp4
4 mai 2020, par Steven Liuavformat/hlsenc : resend full url of the init fragment mp4
fix ticket : 8651
because the init fragment mp4 file name is without base url name,
so just modify it use the full url which splice after init function.Tested-by : matclayton
Signed-off-by : Steven Liu <liuqi05@kuaishou.com> -
I want to overlaying the gif image on full video using NReco.VideoConverter (FFmpeg). But getting error using ffmpeg.CreateMedia
6 mai 2020, par Gagandeep SinghWhen I'm creating using ffmpeg.Invoke the below command is working perfectly :-



ffmpeg.Invoke($"-i {@"result.mp4"} -ignore_loop 0 -i {@"giffy_1000.gif"} -filter_complex \" [1:v]scale=1920:1800 [ovrl];[0:v][ovrl]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/20:shortest=1 \" {@"result2.mp4"}");




But when I tried using the above command in ffmpeg.CraeteMedia then it throws the error as convertion failed. Below is the code snippet :-



ffmpeg1.ConvertMedia(
 new[] {
 new FFMpegInput(@"result.mp4"),
 new FFMpegInput(@"giffy_1000.gif")
 },
 @"style.mp4",
 null,
 new ConvertSettings() {
 CustomOutputArgs = " -ignore_loop 0 -filter_complex \" [1:v]scale=1920:1800[ovrl];[0:v][ovrl]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/20:shortest=1 \" "
 });




Please let me know what mistake I'm doing.


-
avformat/mux : add proper support for full N:M bitstream filtering
18 avril 2020, par Marton Balintavformat/mux : add proper support for full N:M bitstream filtering
Previously only 1:1 bitstream filters were supported, the end of the stream was
not signalled to the bitstream filters and time base changes were ignored.This change also allows muxers to set up bitstream filters regardless of the
autobsf flag during write_header instead of during check_bitstream and those
bitstream filters will always be executed.Signed-off-by : Marton Balint <cus@passwd.hu>