
Recherche avancée
Autres articles (59)
-
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 (...) -
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 (...) -
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 (9179)
-
h264 segments timeline for live http
18 mai 2017, par ManuelI want to stream h264 from IP camera through http range requests.
Recording 10min video to file with :ffmpeg -i rtsp://192.168.1.128:554/ch0_0.h264 -vcodec copy -an -f mp4 -reset_timestamps 1 -segment_time 1 -t 600 -movflags empty_moov+default_base_moof+frag_keyframe video.mp4
During the recording every second I capture the video structure with (python lib) :
qtfaststart -l video.mp4
I can capture the init header without any problem and also the rest of the processing video. The thing is that I don’t know how to make the timeline for each segment :
moof 104
mdat 41899 ---- > segment 1 104+41899
moof 432
mdat 831469 -----> segment 2 432+831469
How I can capture the timeline for each segment ?
eg :
segment1 = from 0 to 2 sec
segment2 = from 2 to 4 sec ...and so on
-
Recording video using ffmpeg in android
12 juin 2017, par Vishal Ghorpadei was studying ffmpeg for android library,was unable to understand a part of the code.
public void onPreviewFrame(byte[] data, Camera camera)
{
if (audioRecord == null || audioRecord.getRecordingState() != AudioRecord.RECORDSTATE_RECORDING)
{
startTime = System.currentTimeMillis();
return;
}
if (RECORD_LENGTH > 0) {
int i = imagesIndex++ % images.length;
yuvImage = images[i];
timestamps[i] = 1000 * (System.currentTimeMillis() - startTime);
}
//till here i was able to understand but the first statement is for what purpose?
/* get video data */
if (yuvImage != null && recording) {
((ByteBuffer)yuvImage.image[0].position(0)).put(data);
}
} -
Rework pixel_var2
1er mai 2017, par Henrik GramnerRework pixel_var2
The functions are only ever called with pointers to fenc and fdec and the
strides are always constant so there's no point in having them as parameters.Cover both the U and V planes in a single function call. This is more
efficient with SIMD, especially with the wider vectors provided by AVX2 and
AVX-512, even when accounting for losing the possibility of early termination.Drop the MMX and XOP implementations, update the rest of the x86 assembly
to match the new behavior. Also enable high bit-depth in the AVX2 version.Comment out the ARM, AARCH64, and MIPS MSA assembly for now.