
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (96)
-
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 (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (9429)
-
Android : Live Stream RMTP video from Wowza server
4 décembre 2013, par TamannaI am developing an android application in which i want to publish as well as stream a video..
What I want is :
-
My app record a video and that video is sent to server
-
The recorded vieo will ve streamed live to another android device at the
same time..
I have completed the first task using javac and ffmpeg
I am stuck in second task.. i have searched a lot to stream the video from server but didn't succeed..
I dont want to use WebView and play the video in It. I want RMTP player ..
This task has been completed in iOS.. I want dame for Android..
Can anyone suggest me some link to fulfill my task ???P.S. :
I am using wowza server and RMTP stream.. I would like to stream RMTP video(.flv).. If no solution avaliable. i can swicth to RSTP
-
-
How can I add ffmpeg to a .NET MAUI project for Android/iOS ?
14 juin 2024, par codybchaplinI have looking for solutions but just don't understand exactly what to do. There are several nuget packages that seem to be wrappers for ffmpeg but don't actually include ffmpeg itself such as FFMpegCore. I have been trying to follow the steps to build for Android from ffmpeg-kit, but it keeps failing and I am at a loss. Forgive my ignorance, but why is there no straightforward way to add ffmpeg to a .NET MAUI project that can be used on iOS/Android ?


-
java.io.ioexception permission denied android
30 janvier 2015, par chandan chaudharyI want to get frames from video via using ffmpeg command in android
ffmcommand for the same is :String[] ffmpegCommand = {
"ffmpeg",
"-1",
"-y ",
"-vcodec",
"mjpeg",
"-vframes",
"1",
"-an",
"-f",
"rawvideo",
"-s",
"320X240",
"-i",
Environment.getExternalStorageDirectory().getPath()
+ "/com.mobvcasting.mjpegffmpeg/video.mp4",
Environment.getExternalStorageDirectory().getPath()
+ "/com.mobvcasting.mjpegffmpeg/frame_%05d.jpg"};In My manifest i have already given :
android.permission.WRITE_EXTERNAL_STORAGE
But still i am getting error of :
java.io.ioexception permission denied android
Please advice me on this or with some other
ffmpeg
commandThanks in advance.