Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (104)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (12418)

  • doc/developer.texi : Add variadic macros to allowed C language features

    23 mars 2020, par Andreas Rheinhardt
    doc/developer.texi : Add variadic macros to allowed C language features
    

    They are used in several places like CBS.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] doc/developer.texi
  • ffmpeg english subtitle is missing from converted .mkv file

    3 juin 2020, par horace

    I downloaded some .mkv files and tried to play them in my Roku using the Roku media player. There was no audio but 2 subtitle files were available 0=German 1=English.&#xA;I converted the file using ffmpeg -i oldfile.mkv -c:v copy -c:a mp3 newfile.mkv&#xA;Now when i play the file with Roku media player the audio is fine, but only the default subtitle is available and it is German.&#xA;I have tried to use -c:s to change the subtitle but I don't know what to command to use.

    &#xA;

  • Set audio language and subtitle language using php-ffmeg

    2 septembre 2020, par Kermit

    Is that possible to set a desired audio language and a subtitle language using php-ffmeg ?&#xA;Something like :

    &#xA;

    $format&#xA;->setAudioLanguage(&#x27;eng&#x27;)&#xA;->setSubtitle(&#x27;eng&#x27;);&#xA;

    &#xA;

    I tried to look into the documentation but I wasn't able to find anything about it...

    &#xA;

    My goal is to make a clip using a video containing several audio languages and subtitles, so I need to be able to choose which channel I want for my output.

    &#xA;