
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (41)
-
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 (...) -
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 (4089)
-
Accord.Video.FFMPEG stream display in Accord.Controls.VideoSourcePlayer
13 juin 2020, par Kapil DaveI am new in camera programming. For learning purpose I have download Accord-Framework C# source code.



Thus if we have JPG or MPEG Stream then we can easily display in Accord.Controls.VideoSourcePlayer.



But if we have FFMPEG Stream then how can we display in Accord.Controls.VideoSourcePlayer.



Please anyone can guide me ?



Thanks in advance


-
how to recompile with -fPIC
7 juillet 2016, par user1455085I was trying to reinstall my ffmpeg, following this guide, on my ARM Ubuntu machine.
Unfortunatley, when I compile a program which uses this lib I get the following failure :/usr/bin/ld: /usr/local/lib/libavcodec.a(amrnbdec.o): relocation R_ARM_MOVW_ABS_NC against `a local symbol' can not be used when making a shared object; recompile with -fPIC
/usr/local/lib/libavcodec.a: could not read symbols: Bad value
collect2: ld returned 1 exit statusNow I would like to recompile it with -fPIC like the compiler is suggesting but I have no idea how. Any help is appreciated.
-
How to resize yuv420sp using FFmpeg
27 juin 2012, par newentryHow to resize yuv420sp data into some other resolution.I tried using ffmpeg sws_scale but no success.I tried by converting yuv420sp to yuv420p and then tried to resize yuv420p into RGB24 via sws_scale but the things it works when both src and destination width and height are same, but for different resolution didn't get correct rgb24. Can anyboody guide me with example code using c or if possible through Java itself .The final resized data must be in yuv420p.
In my case i am trying to downsize the yuv420sp for eg 640*480 to 320*240 or 176*144.thanks,