
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 (80)
-
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (5683)
-
Can I cut at keyframes using ffmpeg ?
23 septembre 2022, par Eng. M.HamdyI am using this command


ffmpeg -start_at_zero -copyts -ss <start time="time"> -t <duration> -i <srcfile> -c copy <dstfile>
</dstfile></srcfile></duration></start>


to fast cut a part of the mp4 video. I got the keyframes so that I choose the
<start time="time"></start>
to be of one of them. I thought this will give me an accurate output video starting exactly at that keyframe, but this doesn't happen.
How can I achieve this (fast and accurate cut at the keyframe) ?
In another words : How ffmpeg decides where to start cutting ? I thought it uses the neatest keyframe.

And another question :
How can I encode a portion of the mp4 with exact same video and audio options ? I don't know those options. I just want to keep the output as the original video. The cut in this second case can be at any frame (not always a keyframe).
Thanks.


-
FFMPEG issues for android lollipop
18 février 2015, par Arslan AhmadI was using the FFmpeg library in my application from the last 2 years and it still working fine on old version. It wont even work on android lollipop.
I was using these library before.
String[] libraryAssets = { "ffmpeg", "libavcodec-55.so", "libavcodec.so",
"libavfilter-4.so", "libavfilter.so", "libavformat-55.so",
"libavformat.so", "libavutil-52.so", "libavutil.so",
"libswresample-0.so", "libswresample.so", "libswscale-2.so",
"libswscale.so"
};And I have got the answer from other link that if we use these 3 libraries it will work on lollipop aswell
"liblicense-jni.so,","libloader-jni.so","libvideokit.so"
But still It didnot resolve yet.
Please check this log.***Starting FFMPEG***
***error: only position independent executables (PIE) are supported.***
***Ending FFMPEG***Any help or any update in library ??
-
Crop image and take the left part with ffmpeg
21 novembre 2019, par shAkurffmpeg -i giphy.mp4 -y -filter_complex "[0:v]crop=iw/2:ih:0:0[left];[1:v]crop=iw/2:ih:ow:0[right];[left][right]hstack" -vframes 1 -vcodec mjpeg giphy.jpg
The command above takes the first frame of a mp4 file and converts it to an image. I want to crop that image and take only the left part starting from center but I get the following error :
Invalid file index 1 in filtergraph description
[0:v]crop=iw/2:ih:0:0[left] ;[1:v]crop=iw/2:ih:ow:0[right] ;[left][right]hstack.What is wrong with my command ? The image I want to crop : imgur.com/a/PdAqiZU -> I want to take only the left part of that image