
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (63)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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 ;
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (7143)
-
Publishing mp4 video to RTMP red5 server doesn't work
25 septembre 2017, par k-hirffmpeg -re -i filename.mp4 -c copy -movflags +frag_keyframe -f mp4 rtmp://localhost/oflaDemo/keyname
With the command above, I could publish it to red5 with no error, but I couldn’t view the video through flowplayer, unless I put -f flv instead.
Can someone tell me if it’s because ffmpeg does not support mp4 video stream, or is it the red5 app (oflaDemo)’s problem ?Here are the two sources of the viewer :
Neither of them work if the video is sent by -f mp4.First
<code class="echappe-js"><script src="http://vjs.zencdn.net/4.2.0/video.js"></script>To view this video please enable JavaScript, and consider upgrading to a web browser
that supports HTML5 videoSecond one
<code class="echappe-js"><script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src='http://stackoverflow.com/feeds/tag/demos/flowplayer/flowplayer.min.js'></script>
<script><br />
<!--<br />
flowplayer("#player01", {<br />
autoplay: false,<br />
live: true,<br />
clip: {<br />
sources: [<br />
{type: "video/flv", src: "rtmp://localhost/oflaDemo/keyname"}<br />
]<br />
}<br />
});<br />
//--><br />
</script> -
Get libx264 to work on flutter android application
17 juillet 2023, par ololoI am using ffmpeg_kit_flutter package in my flutter application and I need to use libx264.


In my Podfile for ios I have the following setup which helped me got libx264 working perfectly for ios :


if plugin_name == 'ffmpeg_kit_flutter'
 pod 'ffmpeg_kit_flutter/full-gpl', :path => File.join(relative_symlink_dir, 'plugins', plugin_name, platform)
 else
 pod plugin_name, :path => File.join(relative_symlink_dir, 'plugins', plugin_name, platform)
 end



However, when I ran the flutter app on android I am getting the error that states :




Unknown encode 'libx264'




Are there any configurations I need to do on the android side of things to get it working for android as well ?


-
ffmpeg blend filter not work right in android
15 mai 2018, par tainguyenI’m doing my android project which uses blend filter to create uncover down video transition. My test device is Samsung S4 (Android version : 4.4.2)
this is my command string :ffmpeg
-loop 1 -t 1 -i img001.jpg
-loop 1 -t 1 -i img002.jpg
-loop 1 -t 1 -i img003.jpg
-loop 1 -t 1 -i img004.jpg
-loop 1 -t 1 -i img005.jpg
-filter_complex
"[1:v][0:v]blend=all_expr='if(lte(Y,N*H/24),A,B)'[b1v];
[2:v][1:v]blend=all_expr='if(lte(Y,H*N/24),A,B)'[b2v];
[3:v][2:v]blend=all_expr='if(lte(Y,H*N/24),A,B)'[b3v];
[4:v][3:v]blend=all_expr='if(lte(Y,H*N/24),A,B)'[b4v];
[0:v][b1v][1:v][b2v][2:v][b3v][3:v][b4v]
[4:v]concat=n=9:v=1:a=0,format=yuv420p[v]" -map "[v]" out_cover_top.mp4 -yThe result video transition is not scroll from the top to the bottom as I want. It break into several parts ( the red arrow show you the top and bottom of an part).
Help me please.