
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (93)
-
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 ; (...) -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...)
Sur d’autres sites (7431)
-
Use argument shortest in C++ code in FFMPEG
7 juillet 2021, par Little MaxI need to set up the argument "-shortest" but in c++ code. I know that I can set up an argument with value for example :


av_opt_set(codecContext, "crf", "28", 0);



But here is the thing, there is a value, but in shortest no value.
So how can I set up shortest in c++ code


Thanks in advance


-
Video stream url extract using python
25 octobre 2016, par AGRI am trying to extract video source url from online video, I have tried selenium and scrapy but I can use these tools to extract any data from the website if we know the exact xpath.
But some websites they don’t have source url on the page (hidden), I can see that on wireshark traffic or “Video DownloadHelper” chrome addon extracts the source.
Is there any python lib to extract any streaming video url from online page (like Video downloadhelper) ?
Thanks in advance.
-
What is the most efficient way to trim and join multiple videos in ffmpeg ?
27 avril 2020, par Patrick OsheaI have a python program that downloads a bunch of .mp4 videos into a directory for me and after running a few audio matching algorithms I need to trim the videos to a minute and eventually concantenate them all together.



As of right now I do the following things to a video :
Trim it to a minute
Resize the videos so they're all the same size
Apply a picture to the video
And then pad the video (this is due to a weird glitch that occurs if I try joining all the videos together which results in the audio and video not being synched)



Is there any way to combine some of the steps or things I should make sure I'm doing to do this as fast as possible ? Thank you in advance !