Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (58)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (7942)

  • changelog : add mips 64-bit port

    5 mars 2015, par James Cowgill
    changelog : add mips 64-bit port
    

    Reviewed-by : Nedeljko Babic <Nedeljko.Babic@imgtec.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Changelog
  • which port ffmpeg is using for streaming to a rtmp(or rtmps) server running in a cloud location

    12 janvier 2023, par elsa

    I am working with ffmpeg and rtmp camera streaming in a constrained environment.&#xA;I have rtmp server running on a cloud (say eg. 11.23.123.13 in port 1935 for rtmp & 4936 for rtmps).&#xA;However is there any port on sending end , i should request team to open to avoid blocking the stream sending from device end to rtmp server end(camera streaming end). Only port 443 is open in device where camera connected and ffmpeg commands are running.

    &#xA;

    It would be helpful if somebody give insights on how network is connecting from ffmpeg encoder to rtmp server

    &#xA;

      &#xA;
    1. Getting the details how network is connecting from ffmpeg encoder to rtmp server ?
    2. &#xA;

    3. Which ports to be open in device end(where camera connecting) to start ffmpeg streaming to rtmp server running on cloud ?
    4. &#xA;

    &#xA;

  • Ffmpeg video compression is working but takes forever to compress [closed]

    17 mai 2021, par Dev Chauhan

    I apologize if this has been asked before. But since I could't find any solution to it hence have to post it here.

    &#xA;

    I am new to android development and currently stuck with Ffmpeg libraray.

    &#xA;

    I am trying to compress video before uploading to FirbaseStorage, for which I am using command :

    &#xA;

    commandArray = new String[]{"-y", "-i", fileToBeCompressed, "-s", "720x480", "-r", "25", "-vcodec", "mpeg4", "-b:v", "1.5M", "-b:a", "48000", "-ac", "2", "-ar", "22050", outputPath};&#xA;

    &#xA;

    It works but for a 17 seconds long and 5.88 MB video, it is taking 4-5 minutes to compress.

    &#xA;

    I doubt that I have some unnessasary components in commandArray which may be increasing the compress time.

    &#xA;

    Also, as I saw in some post, adding "-crf", "21", "-preset", "veryfast", "-c:a", "copy" will help reducing time. But when I do it, it doesn't work at all. Does sequence matters for this ?

    &#xA;

    Please help.

    &#xA;