
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (80)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (7422)
-
find GOP for MPEG4 format video
31 décembre 2013, par user3147794I read video with(format MPEG-4) and container (.mp4 ) use Aforge.Video.FFMPEG in c# language
VideoFileReader video = new VideoFileReader() ;
Bitmap bmp = video.ReadVideoFrame() ;
pictureBox1.Image = bmp ;
pictureBox1.Image.Save(@"D :\frames\" + ".bmp",ImageFormat.Bmp) ;
it convert video into sequence of frames (bitmap image) ,now i need to know GOP what is GOP for mpeg4 format video,i need I-frame for each GOP,is there any method that can help me ?
-
Find GOP size for mpeg4 video file
25 décembre 2013, par user2922938I am working on mpeg4 video file and I'm using AForge.Video.FFMPEG to extract all frames in video as bitmap images, i use container .mp4 coded with mpeg4.
I need to use only I-frame for each GOP, is there any method or location to find the GOP in mpeg4 use C# ?
-
Command find and and convert using ffmpeg
10 décembre 2013, par molwikoI would like to combine the two following commands to find mp4 files and convert them to mp3 and save them with same name.
Thanks in advance.
The two command line :find ./ -name '*.mp4'
ffmpeg -i video.mp4 -vn -acodec libmp3lame -ac 2 -ab 160k -ar 48000 audio.mp3