
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (91)
-
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 (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (11268)
-
Android IP Camera
23 décembre 2014, par CptCattivoI’m looking for a good working solution to integrate an IP-Cameras video stream in my Android App. At the moment i am using the "Axis P1214-E" which has a good image quality, but i couldn’t get a "LIVE" stream from it. Either the stream is very laggy or it’s a few seconds delayed (sometimes even more) or the stream is shutting down after awhile. What i tried so far :
-
Using a SurfaceView to get the MJPEG Stream as described in this post : Android and MJPEG
Problem : Lagging -
Using a WebView to get the RTSP stream :
public class MainActivity extends Activity {
private static final String TAG = "VideoViewExample.MainActivity";
private static final String RTSP_URL = "rtsp://ip/axis-media/media.amp";
private VideoView videoView;
private MediaController mediaController;
private OnPreparedListener opl;
private int position = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if(savedInstanceState != null)
position = savedInstanceState.getInt("POSITION");
videoView = (VideoView) findViewById(R.id.videoView);
opl = new OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mp) {
videoView.seekTo(position);
if (position == 0) {
videoView.start();
}
else {
videoView.pause();
}
}
};
if (mediaController == null){
mediaController = new MediaController(this);
}
mediaController.setAnchorView(videoView);
AsyncTask at = new AsyncTask() {
@Override
protected Void doInBackground(Void... params) {
try{
videoView.setMediaController(mediaController);
videoView.setVideoURI(Uri.parse(RTSP_URL));
} catch (Exception e) {
Log.d(TAG, e.getMessage());
}
videoView.requestFocus();
videoView.setOnPreparedListener(opl);
return null;
}
};
at.execute();
}
@Override
protected void onPause() {
position = videoView.getCurrentPosition();
super.onPause();
}
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putInt("POSITION", position);
}
}Problem : Good video Quality, but delayed.
- Using external frameworks like FFMPEG and GSTREAMER (Only some examples so far)
Problem : Also very laggy and/or delayed.
Now i’m running out of ideas to get this working. It’s very important for my Application that the stream is live and not lagging.
I’m developing on a "Banana Pi" board with Android 4.2.2 (4.4 is possible as well).Does anybody know how to get this working ? Or maybe should i use an other camera ? Do you have any suggestions that would work well with android ?
Thanks in advance
Christian
-
-
Anomalie #3164 : Problème de sauvegarde en MySQL
21 décembre 2014, par Franck DalotJe m’excuse du retard :-(
Ma réponse est non, b b :-((test fait via :
SPIP 2.1.26 [21881]
Installation en MySQL
PHP 5.4.34
prefix des tables : spipdev20Je pensais qu’il n’y avait plus de problème, mais en faite si !
J’ai fait pas mal de test et copie d’écran , car c’est plus simple pour comprendre.
Quand je parle du patch de denisb, dont il faudrait faire l’ajout :
http://core.spip.org/projects/spip/repository/entry/branches/spip-2.1/ecrire/exec/admin_tech.php#L320
En remplaçant la ligne 320 par :. preg_replace(',^spip_,', $GLOBALS['table_prefix'].'_', $t)
Quand je parle de mes_options, il s’agit juste du fichier mes_options qui est dans "config" avec dedans uniquement :
<?php
$table_prefix = 'spipdev20'; ?>L’unique chose qui fonctionne pour le moment, c’est "l’affichage" avec le patch ET mes_options
Mais cela fait la sauvegarde sans le bon préfix des tables -
kdenlive - Get stuck when stop capture
9 janvier 2015, par Eduardo RamosI am having problems with kdenlive to capture my webcam with ffmpeg. My environment :
- Slackware 14.1 (current) ;
- mlt-0.9.0-x86_64-2_SBo ;
- ffmpeg-2.1.5-x86_64_custom-1_SBo ;
- kdenlive-0.9.8-x86_64-1_SBo.
My procedure :
Go to ’Record Monitor’ tab, click on ’record’ button. The preview works very well. Some seconds later, I click on ’stop’ button, then it get stuck. That moment, my webcam remains active too.
When I check my working folder /tmp/kdenlive, it appeared capture0000.mpg file. I can play normally with mplayer. So it seems kdenlive is working with capture and encode.
My kdenlive capture configuration :
- device : /dev/video0
- Size : 160x120
- Frame rate : 30/1
-
Alsa capture : checked
-
Encoding profile : Normal MPEG :
f=mpeg acodec=mp2 ab=128k ar=48000 vcodec=mpeg2video minrate=0 vb=4000k