Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (86)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (11391)

  • Anomalie #3429 (Nouveau) : Incohérence du 2è paramètre du critère `{pagination}`

    16 avril 2015, par marcimat ☺☮☯♫

    Hop,

    Je viens de tomber sur un truc curieux, reproductible simplement.
    Lorsqu’on demande debutX=@identifiant à une boucle pagination, cela ne fonctionne que si on a une balise en 1er ou 2è argument du critère pagination :

    - {pagination #VAL{10} X} fonctionne,
    - {pagination 10 #VAL{X}} fonctionne,
    - mais pas {pagination 10 X} ;

    Le nombre 10 est pourtant bien pris en compte dans les 3 situations finalement ; mais pas le ’X’ dans le dernier cas.
    Plus précisément le critère pagination croit lire dans le dernier cas un nombre ’10 X’ qu’il transforme en 10 avec un strval(). Mais il perd l’info X.

    Du coup, la variable créée est debutX dans les premiers cas, et debut_{NOM_BOUCLE} dans le dernier.

    Une solution pourrait être d’accepter (et préférer) l’écriture {paginaiton N, X} ?

  • HOW TO CHOOSE AUDIO WHILE CONVERTING .MKV TO .MP4 [duplicate]

    30 janvier 2021, par sanjai cyber

    I am trying to convert a .mkv file to .mp4 file, I used the command

    


    


    ffmpeg -i in.mkv -codec copy out.mp4

    


    


    I got the output but the thing is, the file i am converting has 4 different language for example - english,french,chinese,german. I get the output in English but i want the audio in french (The first audio plays while I open the file in vlc is english)

    


    Does anyone know how to choose the language ?

    


  • 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