Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (100)

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

  • ffmpeg add two subtitle files to the same mp4

    1er février 2016, par Jay Len

    I have two subtitle tracks files : spanish.ass and english.ass. I want to insert them into an mp4. I can do one or the other but not both.

    I am using :

    ffmpeg -i Clean.mp4 -i spanish.ass -c:s mov_text -c:v copy -c:a copy -metadata:s:s:0 language=spa With1CC.mp4

    and then

    ffmpeg -i With1CC.mp4 -i english.ass -c:s mov_text -c:v copy -c:a copy -metadata:s:s:0 language=eng With2CC.mp4

    ...but while the first statement successfully inserts the Spanish subtitles, the second just changes the visual name of the track to read English. The actual English track is not actually inserted as a second track

  • Has Anyone concatenated two videos using ffmpeg

    22 juillet 2015, par vikram thakur

    I am a newbie to android development and my app is like vine app , but i am not able to concatenate two videos using ffmpeg libs . Can anyone provide a sample code or some reference

  • windows CMD send CRLF inside double quote

    14 juin 2016, par uingtea

    I want to pass multiple headers for ffplay or ffmpeg, it say I need to split with CRLF. on linux I can use \ or $'\r\n' but how for windows ?

    SET CRLF=^
    ffplay -v debug -i "http://example.com/test" -headers "Accept-Language: en-US,en;q=0.5%CRLF%Connection: keep-alive"

    debug log : Connection: keep-alive is not sent

    [http @ 04df3f40] No trailing CRLF found in HTTP header.
    [http @ 04df3f40] request: GET /test HTTP/1.1 0KB sq=    0B f=0/0
    User-Agent: Lavf/57.37.101
    Accept: */*
    Range: bytes=0-
    Connection: close
    Host: example.com
    Icy-MetaData: 1
    Accept-Language: en-US,en;q=0.5

    thanks