
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (87)
-
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 (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (11042)
-
Is it possible to use Emgu CV 3.0 to open a live stream with rstp protocol with ffmpeg h264
1er février 2017, par Rezell IsidroIs it possible to use this code in capturing a video stream from an ip camera ?
Capture cap = new Capture("rtsp://192.168.42.1:554/live");
imageBox1.Image = cap.QueryFrame();because my image box is displaying nothing but when i tried viewing it to VLC Media Player the ip address worked. Please help.
I also tried it with VLCPlugin v2 instead of using imageBox and the ip address still work..
I also tried it with iSpy and it worked under ffmpeg(h264), maybe the problem is there ? I’m using Visual Studio Ultimate 2010, Emgu CV 3.x. and I’m using Please help. Been working on this for long now.
-
How to compile ffmpeg for Android
3 octobre 2016, par user1190248As we know ,we can compile ffmpeg for android in linux or windows(cygwin),But now the latest ndk has integrated the cygwin. I guess I can use android studio and ndk to compile ffmpeg directly,so is it ok ?
-
android Javacv cvLoadImage cannot resolve
12 septembre 2015, par RevynidI’m trying to use Javacv to create a video from screenshots, but I get the error "Cannot resolve method" for cvLoadImage.
I imported the following libraries :
import org.bytedeco.javacpp.opencv_core;
import org.bytedeco.javacv.FFmpegFrameRecorder;
import org.bytedeco.javacpp.opencv_highgui;
import org.bytedeco.javacpp.opencv_core.IplImage;for this code snippet : [http://pallavidaga.com/wp/?p=56]
with this problematic line :iplimage[j] = cvLoadImage(Environment.getExternalStorageDirectory().getPath() + "/Video_images/" + name + ".jpg");
Using Javacv 1.0 downloaded in Android Studio in dependencies :
compile 'org.bytedeco:javacv:+'
compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '2.4.10-0.10', classifier: 'android-arm'
compile group: 'org.bytedeco.javacpp-presets', name: 'ffmpeg', version: '2.5.1-0.10', classifier: 'android-arm'I tried it with highgui, but it didn’t work. Furthermore I tried to find the cvLoadImage method in the libraries and couldn’t find it.
Is there an obvious solution to this that I didn’t see or maybe an alternative way to feed the ffmpegrecorder ?(Tried it on a fresh project, too)