Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (54)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie 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, par

    MediaSPIP 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 ; (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (6597)

  • trying to merge 2 video command [duplicate]

    4 octobre 2019, par Vikram Dulgach

    This question already has an answer here :

    I am trying to merge 2 video one has audio and in 2nd video i am adding silent track. but everytime i am trying to merge them it shows me these error. I am using 2 command in both ti give me same erro.

    String [] merge2video={ "-i", video1,"-i", new video2,"-filter_complex", "[0:v]scale=1280x720,setpts=PTS-STARTPTS[v0];[1:v]scale=1280x720,setpts=PTS-STARTPTS[v1];[v0][0:a][v1][1:a]concat=n=2:v=1:a=1", "-map", "[v]", "-map", "[a]","-preset" ,"ultrafast" ,"-crf" ,"30", sharevideo};

    String [] merge2video= "-i", video1,"-i", new video2,"-filter_complex", "[0]setdar=16/9[a] ;[1]setdar=16/9[b] ; [a][b]concat=n=2:v=1:a=1", "-map", "[v]", "-map", "[a]","-preset" ,"ultrafast" ,"-crf" ,"30", sharevideo ;

    [swscaler @ 0xee692000] deprecated pixel format used, make sure you did set range correctly
    [Parsed_concat_4 @ 0xee9255f0] Input link in1:v0 parameters (size 1280x720, SAR 1647:1648) do not match the corresponding output link in0:v0 parameters (1280x720, SAR 1:1)
    [Parsed_concat_4 @ 0xee9255f0] Failed to configure output pad on Parsed_concat_4
    Error configuring complex filters.
    Invalid argument

    Help to solve there issue if anybody is there thanks in advance. and sorry for bad english

  • Configure ffmpeg with android in mac [on hold]

    28 novembre 2013, par Mr.G

    I'm using Mac 10.8.5

    i want to configure ffmpeg in my android application and convert .mov to .mp4 format.

    But first of all i want to configure ffmpeg in to my android project .

    Is there any way to do that . i have already tried some links . But when I'm loaded the libavcodec to my activity . it gives unsatisfied link error.

    Can anyone point me to a working link ?. It should compatible with Mac

    i have already tried How to build + include FFMPEG into an existing Android project "@William Seemann" answer. to configure it

    im pretty sure managed to add in to my android project . but when im tryng to load libavcodec it gives me An UnsatisfiedLinkException

  • RTSP to RTMP in iOS as Transcoding

    15 mars 2019, par Naman Sheth

    I am getting live feed from some IP camera as an RTSP url and then i want to convert it to RTMP.

    Here is two aspects that we have to implement

    1. What we convert from RTSP to RTMP is transcoding.
    2. I have my iPad/iPhone Camera that user can switch and add live feed to RTMP url at this point I want to stop RTSP feed. i.e. Encoding

    This all scenario want to do with FFMPEG

    I have searched on this url but not able to figure out in iOS

    ffmpeg -i "[your rtsp link]" -f flv -r -s -an "[Your rtmp link]"

    RTSP to RTMP streaming

    Thanks in Advance !