
Recherche avancée
Autres articles (76)
-
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 (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (12815)
-
avformat/matroskaenc : fix Tags master on seekable output if there are tags after...
7 octobre 2016, par James Almeravformat/matroskaenc : fix Tags master on seekable output if there are tags after the last stream duration
The dynamic AVIOContext would get closed pointing to the wrong position
in the buffer.
This is a regression since 650e17d88b63b5aca6e0a43483e89e64b0f7d2dd.Reviewed-by : Dave Rice <dave@dericed.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
FFMpeg slide text from right to left an leave from left to right after x seconds
13 août 2018, par Marco van 't KloosterI’m trying to slide a text inside my video from right to left and leaving the video after 13 seconds.
The text has to stay there for 13 seconds and the leave in the opposite direction the video.Right now I’m using the following command :
ffmpeg -i Pool\ scores.m4v -vf "[in]drawtext=fontfile=/usr/share/fonts/truetype/msttcorefonts/Arial.ttf:fontsize=40:fontcolor=white:x=900:y=570:text='Marco':enable='between(t,11,24)' [out]" -c:v libx264 scrolling.m4v
So the text
Marco
have to be at x=900 and y=570. Thats also the coordinate where the text have to leave from.The idea is to create a pool score board where the video is auto generated with dynamic text. In this image there is an example of what the animation have to look like. I’ve to retime it tom match the same speed.
See exampleThanks in advance !!
-
convert rtp packets to audio file
8 octobre 2022, par hossein sabzianiI have a pcap file that contains rtp packets with dynamic type 101 format. I want to convert these packets into audio files. When I save the rtp part in the file(input.dat) and use FFMPEG to convert this file :


ffmpeg -f rtp -i input.dat output.wav



I get this error :


Unable to receive RTP payload type 101 without an SDP file describing it
input.dat: Invalid data found when processing input



I know that .sdp file contains the format, timing, and protocol of the media...
How to create sdp file ?


Can anyone help me how to solve this problem ?