
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (48)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (3042)
-
Grep ffmpeg time/duration to get progress stream ?
2 février 2014, par paulkonIs there a way to grep ffmpeg's unfriendly output to get the progress (time/duration) into a variable ? I've tried this on powershell already but i can't get seem to get a hold of ffmpeg's continuous output via pipe redirection and using the
--line-buffered
flag in grep.Here is what I came up with but it only returns after the encoding process has finished.
ffmpeg -i $input $output 2>&1 | grep --line-buffered -oP "(?<=time=)[0-9:]*"
-
FFMPEG read audio convenience function
7 mars 2016, par Phlox MidasIn Matlab, there’s a function called
audioread
that takes a file name as input and returns a vector of samples and the sample rate like this :[samples, sampleRate] = audioread(fileName);
I’ve been programming FFMPEG but finding it very low level. I have a file being read using a technique similiar to this. Is there any such equivalent C function in FFMPEG as there is in Matlab so I don’t have to fiddle with the low level stuff ? Or any library that can provide a nice API like this for FFMPEG (though I would just prefer this one function) ?
-
How to use hardware acceleration with ffmpeg
5 avril 2018, par ixSciI need to have ffmpeg decode my video(e.g. h264) using hardware acceleration. I’m using the usual way of decoding frames : read packet -> decode frame. And I’d like to have ffmpeg speed up decoding. So I’ve built it with
--enable-vaapi
and--enable-hwaccel=h264
. But I don’t really know what should I do next. I’ve tried to useavcodec_find_decoder_by_name("h264_vaapi")
but it returns nullptr.
Anyway, I might want to use others API and not just VA API. How one is supposed to speed up ffmpeg decoding ?P.S. I didn’t find any examples on Internet which uses ffmpeg with hwaccel.