
Recherche avancée
Autres articles (65)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (11388)
-
How to stream non-exhaustive list of clips into rtmp server using ffmpeg ?
30 octobre 2017, par codedemonI have program that generates clips uniform length ( around seconds ) continuously. Clips are named chronologically (DT stamp). Now I need to merge those clip and stream all of them in real time via ffmpeg.
I prefer FFmpeg, but any other option is also welcomed.
Thank you.
-
FFmpeg to create slow motion replays to the end of it's realtime video
23 septembre 2017, par flowerpowa99I’m looking for a way to create a slow-motion replay to the end of an existing clip (like 3 to 5 seconds).
** It needs to play normally once and then immediately replay at 25%-speed -with audio **
I currently do this in After Effects pretty quickly and easily, but ffmpeg would be so much faster for the volume of clips I do this to. I’m planning on taking this a step further and writing a .bat file to automate the process down the road.
-
Capture video using FFmpeg in Android
3 juillet 2015, par Robert MillerI’ve made a simple camera app just to learn how to capture video on an Android device. The clip is currently recorded with the help of the MediaRecorder library. A preview is shown in a VideoView before recording starts, and continues to show this during the actual recording.
As I have understood, recording of videos can also be done by creating an Intent and calling an external Activity, which would result in the previous activity to be paused and destroyed (correct ?).Anyways, for this project I prefer the first approach, to not leave the activity. But unfortunately, I experience issues with the MediaRecorder library due to a known bug (which by the way seems to have been around for years). So now I have come across FFmpeg and this "TouchToRecord" (link below) demo project that uses FFmpeg Recorder from JavaCV to capture videos by touching the screen. Awesome ! Except that I do not want to start the camera as a new activity, as they do in this example. I want to remain in the same activity and see the preview and record in a VideoView directly. To touch the VideoView to record isn’t necessary.
Do you think it’s possible to use the same library (JavaCvVideoRecorder), as the creator of this demo project have been using, to do this ? Or is there a better way which I have not yet discovered ?In the end, all I want to do is being able to record video directly into a VideoView, without using the MediaRecorder library.
Link to demo project : https://github.com/sourab-sharma/TouchToRecord