
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (52)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (6231)
-
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.