Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (63)

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

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

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

  • avutil/opt : Print out numeric values of option constants

    17 septembre 2019, par Soft Works
    avutil/opt : Print out numeric values of option constants
    

    It's often not obvious how option constants relate to numerical values.
    Defaults are sometimes printed as numbers and from/to are always printed as numbers.
    Printing the numeric values of options constants avoids this confusion.
    It also allows to see which constants are equivalent.

    Before this patch :

    -segment_list_type <int> E........ set the segment list type (from -1 to 4) (default -1)
    flat E........ flat format
    csv E........ csv format
    ext E........ extended format
    ffconcat E........ ffconcat format
    m3u8 E........ M3U8 format
    hls E........ Apple HTTP Live Streaming compatible

    Afterwards :

    -segment_list_type <int> E........ set the segment list type (from -1 to 4) (default -1)
    flat 0 E........ flat format
    csv 1 E........ csv format
    ext 3 E........ extended format
    ffconcat 4 E........ ffconcat format
    m3u8 2 E........ M3U8 format
    hls 2 E........ Apple HTTP Live Streaming compatible

    Signed-off-by : softworkz <softworkz@hotmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/opt.c
  • FFmpeg - How do I set audio language and subtitles when converting videos ?

    7 mai 2022, par mereMolf

    I have a handful of mkv video files that happen to have English and Japanese audio tracks along with english subtitles. I want to convert them all to webm files and keep only the Japanese audio with English subtitles.

    &#xA;

    How do I do that ?

    &#xA;

    Specifically, I use QWinFF, a GUI frontend to FFmpeg.&#xA;Under the Advanced options, I use the following parameters

    &#xA;

    -f webm -vcodec libvpx -g 120 -level 216 -profile:v 0 -qmax 25 -qmin 10 -rc_buf_aggressivity 0.95 -vb 480k -acodec libvorbis -aq 90&#xA;

    &#xA;

    Any help would be appreciated.&#xA;Thanks.

    &#xA;

  • How to stream all videos in a folder ?

    12 août 2018, par Krishnendu

    Hi i want to stream videos over web using ffserver. i got this link as reference.

    Now what i am not able to figure out is how to pass a folder(which content all videos i want to stream) as input to stream all videos. I also want add more videos dynamically to this folder in time to time and streaming should happen(like how it works in Darwin). now i can’t use Darwin because it doesn’t support for iOS.

    please give me a suggestion.

    is there any other open source tool by which i can do this ?