Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (44)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (4282)

  • No such file or directory on android ffmpeg in api level 28

    7 novembre 2019, par Mohammadreza Janipour

    I use FFmpeg and its ok when I run it on android device with API level 25 but when I run it on a device with API level 27 show "No such file or directory" error in my log.

    My FFmpeg library : bravobit.nl.ffmpegandroid

    Please help me.

    My full logcat :

    E/FFmpeg: Exception while trying to run: [/data/user/0/com.myapplication/files/ffmpeg, -i, /external_files/org_94594219219624692.mp3, -af, adelay=0|0, -preset, ultrafast, /external_files/vc1_94594219219624692.mp3]
       java.io.IOException: Cannot run program "/data/user/0/com.myapplication/files/ffmpeg": error=2, No such file or directory
           at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
           at nl.bravobit.ffmpeg.ShellCommand.run(ShellCommand.java:15)
           at nl.bravobit.ffmpeg.FFcommandExecuteAsyncTask.doInBackground(FFcommandExecuteAsyncTask.java:43)
           at nl.bravobit.ffmpeg.FFcommandExecuteAsyncTask.doInBackground(FFcommandExecuteAsyncTask.java:12)
           at android.os.AsyncTask$2.call(AsyncTask.java:333)
           at java.util.concurrent.FutureTask.run(FutureTask.java:266)
           at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
           at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
           at java.lang.Thread.run(Thread.java:764)
        Caused by: java.io.IOException: error=2, No such file or directory
           at java.lang.UNIXProcess.forkAndExec(Native Method)
           at java.lang.UNIXProcess.<init>(UNIXProcess.java:133)
           at java.lang.ProcessImpl.start(ProcessImpl.java:128)
    </init>
  • avfilter/vf_framerate : limit the scene level max range

    24 septembre 2019, par Limin Wang
    avfilter/vf_framerate : limit the scene level max range
    

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/vf_framerate.c
  • How to get and show volume input level from rtsp using ffplay

    4 septembre 2019, par Xavier

    I´m trying to get and display the volume level from an ip camera with rtsp protocol. By now i achieved with ffmpeg but i need to do it with ffplay.

    I have tried many combinations with no luck. Some of these

    ffplay -f lavfi -i rtsp://admin:admin@10.0.0.99:554/live/ch0:showvolume=f=0:b=0:w=310:h=59:o=v:m=p

    Gives error "No such filter : ’rtsp ://admin:admin’"

    ffplay -f lavfi "amovie ='audio\=rtsp://admin:admin@10.0.0.99:554/live/ch0',showvolume=f=0:b=0:w=310:h=59:o=v:m=p"

    Gives error "Undefined constant or missing ’(’ in ’admin@10.0.0.99’ and so many others.

    ffplay -f lavfi "amovie ='audio\=Microphone (Realtek High Definition Audio)':f=dshow,showvolume=f=0:b=0:w=310:h=59:o=v:m=p"

    This code works with internal notebook microphone but i can`t see how to replace dshow with RTSP

    I already tried others combinations but nothing works.
    I need to know how specify an rtsp input with lavfi or any other way to show volume input level from a rtsp with ffplay.
    Thanks in advance