Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (59)

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

  • Output a video made of several video chunks of the input video

    21 mai 2013, par mad

    I was wondering if it was possible to output a video made of several extracts of the input video.
    For example outputting a video made of the first 10s of each minute of the input.

    I know you can do it programmatically, calling ffmpeg several times with -ss and -t to make the chunks and then merge them, but is it possible to do it in one command using video filters ?

  • How to convert fisheye-video into an equirectangular video to use with 360°-video viewers ?

    11 juin 2017, par P. Dee

    Actioncams like GoPro put a wider fov into a standard 1920 x 1080 or higher resolution at the expense of distortion.

    How do I use ffmpeg to convert this fov-encoded format into an equirectangular video to use with 360°-video viewers ?

  • (java.net.ProtocolException) Unable to stream video in video view. (Video which was trimmed using FFmpeg

    16 décembre 2020, par Suraj

    Hello I am using the below command to trim video using FFmpeg (trim without re-encoding)

    


    String[] command = new String[]{"-y", "-i", original_path, "-ss", ""+ startMs / 1000, "-t" , "" +((endMs - startMs) / 1000), "-c", "copy", dest.getPath()};


    


    Now this trimmed video is present on my server but i am not able to stream it in video view. Whereas I can play the other videos which was not trimmed using FFmpeg.

    


    Below is the code load video in videoview

    


    VideoView videov = findViewById(R.id.videov);
Uri uri = Uri.parse("http://x.x.xxxx.xxxx:8000/xxxxxApp/media/xxxx/1608121174332.mp4");
videov.setVideoURI(uri);
videov.start();


    


    Also I can play the same video in webview control.