
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (76)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Les notifications de la ferme
1er décembre 2010, parAfin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
Les notifications de changement de statut
Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
À la demande d’un canal
Passage au statut "publie"
Passage au (...)
Sur d’autres sites (6224)
-
Image and Video editor in android
9 octobre 2015, par mdtuyenI need make an app to process image and video in android with some simple function.
With image editor I use aviary SDK and video editor I use FFMPEG
However with aviary I can’t custom and add owner lib and FFMPEG make APK so big.Do you have any solution for me ?
- One library process for image and video
- Or use core android framework for my work
- Introduce for me the best library to process image and video.
Thank you so much.
-
ffmpeg - Can I draw an audio channel as an image ?
16 mai 2017, par RedtopiaI’m wondering if it’s possible to draw an audio channel of a video or audio file as an image using ffmpeg, or if there’s another tool that would do it on Win2k8 x64. I’m doing this as part of an encoding process after a user uploads a video or audio file.
I’m using ColdFusion 10 to handle the upload and calling cfexecute to run ffmpeg.
I need the image to look something like this (without the horizontal lines) :
-
Saving immediately each converted image to video file
5 juillet 2020, par Adam LasotaI want to ask about solution to streaming many of image to video. I traied use ffmpeg java, Jcodec, Humble-Video but this api providing static convert. Is means that gets all images, process it and save to file.


For example (pseudocode) :


JCodec jcodec= new Jcoced(file.mp4);//could be ffmpgRecorder 
for(image:images)
{
jcodec.record(image);
}

jcodec.stop()
jcodec.release()



If execute jcodec.stop() then to file is flushed converted images. Is possible to saving file image by image and stream to file ? Images for application are providing by client socket.


Expected solution (pseudocode) :


JCodec jcodec= new Jcoced(file.mp4);
for(image:images)
{
jcodec.record(image);
jcodec.flush();
jcodec.save();
}




or :


FileOutputStream file= new FileOutputStream(fff.mp4, append:true)
for(image:images)
{
frame f=convertImageToFrame(iamge)
byte[] b= f.toByte();
file.write(b);
}
file.close()