
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (58)
-
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 ; (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip 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 -
which port ffmpeg is using for streaming to a rtmp(or rtmps) server running in a cloud location
12 janvier 2023, par elsaI am working with ffmpeg and rtmp camera streaming in a constrained environment.
I have rtmp server running on a cloud (say eg. 11.23.123.13 in port 1935 for rtmp & 4936 for rtmps).
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.


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


- 

- Getting the details how network is connecting from ffmpeg encoder to rtmp server ?
- Which ports to be open in device end(where camera connecting) to start ffmpeg streaming to rtmp server running on cloud ?






-
Ffmpeg video compression is working but takes forever to compress [closed]
17 mai 2021, par Dev ChauhanI apologize if this has been asked before. But since I could't find any solution to it hence have to post it here.


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


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


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



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


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

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 ?

Please help.