
Recherche avancée
Autres articles (32)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (9517)
-
avconv : make sure the filtergraph is freed on init failure
1er octobre 2016, par Anton Khirnovavconv : make sure the filtergraph is freed on init failure
The filtergraph’s existence is used in several places to mean that the
filtergraph is fully configured. This causes problems if it’s allocated,
but the initialization fails (e.g. if a non-existent filter is
specified). -
SDL_AudioSpec call back function, different threads
22 avril 2014, par RoeeLI currently have a video player that can only play one video at a time. I’m trying to modify it so it can play several videos at the same time but I did notice a problem.
given the following code :
SDL_AudioSpec spec;
...
spec.callback = audio_callback;
spec.userdata = data;If I want to run one more video at a time I need 2 more threads - one for the video & one for the audio. The problem is that SDL passes to my ’audio_callback’ only the recent ’data’. Means, If ’A’ thread placed his data in ’spec.userdata’ and then thread ’B’ places his data in spec.userdata (Even though both are totally different variables - not global) - SDL Will still pass only B’s data to my audio_callback function => no sound in video ’A’ and terrible sound in video ’B’
Any suggestions ?
-
avcodec/g2meet : Check RGB upper limit
27 avril 2018, par Michael Niedermayeravcodec/g2meet : Check RGB upper limit
Fixes : runtime error : left shift of 1876744317 by 16 places cannot be represented in type 'int'
Fixes : 6799/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_G2M_fuzzer-5115274731716608Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>