Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (79)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (7438)

  • Ndk : Button event error Fatal 11 SIGSEGV when video streaming

    24 avril 2015, par user3773632

    I’m using ffmpeg in ndk, make video streaming service.

    my problem is that Video streaming when the button is pressed, an fatal 11 SIGSEGV error occurs.

    this my source

    protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.fragment_main);

       Log.v("LOG", "CREATE");

       mUHSurfaceView = (UHSurfaceView) findViewById(R.id.uhsurfaceview);
       bCamera = (Button)findViewById(R.id.camera);

       bCamera.setOnClickListener(new OnClickListener() {
           @Override
           public void onClick(View v) {
               // TODO Auto-generated method stub
               Log.v("CameraButton", "CameraButton");
           }
       });

    In ndk using ffmpeg h264 decoding and rgb24 through opengl(GLSurfaceView) screen output.
    I don’t know why occur this error i can’t solve error
    please help me !

    my device : Samsung galaxy s4 mini
    android : 4.2.2

    Thanks.

  • convert_from_tensorflow.py : add option to dump graph for visualization in tensorboard

    30 juillet 2019, par Guo, Yejun
    convert_from_tensorflow.py : add option to dump graph for visualization in tensorboard
    

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>
    Signed-off-by : Pedro Arthur <bygrandao@gmail.com>

    • [DH] tools/python/convert.py
    • [DH] tools/python/convert_from_tensorflow.py
  • avfilter/vf_dnn_processing.c : add frame size change support for planar yuv format

    21 février 2020, par Guo, Yejun
    avfilter/vf_dnn_processing.c : add frame size change support for planar yuv format
    

    The Y channel is handled by dnn, and also resized by dnn. The UV channels
    are resized with swscale.

    The command to use espcn.pb (see vf_sr) looks like :
    ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>
    Reviewed-by : Pedro Arthur <bygrandao@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_dnn_processing.c