Recherche avancée

Médias (91)

Autres articles (48)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6678)

  • Using FFmpeg concat filter instead of protocol, differrent results [duplicate]

    18 novembre 2015, par f.rodrigues

    This question already has an answer here :

    I have two files that need to be merged.

    I can do this using the ffmpeg concat protocol

    creating a text file and setting the files in there.

    Like so :

    files_to_be_merged.txt

    file '/home/user/Videos/video1.mov'
    file '/home/user/Videos/video2.mov'

    and them using the following command.

    ffmpeg -f concat -i mylist.txt -c copy output.mov

    But I want to do that without having to create a text file.

    I tried this command :

    ffmpeg -i 'concat:video1.mov|video2.mov' -codec copy output.mov

    But the resulting file is just the first video, not both together.

    I get this warning while doing this command ;

    [mov @ 0x35933c0] Codec for stream 0 does not use global headers but
    container format requires global headers

    [mov @ 0x35933c0] Codec for stream 1 does not use global headers but
    container format requires global headers

  • Convert HEVC video to a more widely supported format using fluent-ffmpeg in Node.js

    21 juin 2021, par Daniel Loiterton

    My app allows users to upload videos from their phones. However, the latest iPhone default format (HEVC / H.265) does not seem to be supported by Chrome and other browsers, so some users cannot stream the videos.

    


    I'm already using fluent-ffmpeg on my Node.js backend to read metadata and extract thumbnails from the uploaded videos. How would I go about converting HEVC videos to something else ? What format/options would be appropriate for streaming to browsers ? Ideally I'd like to keep files fairly small, and I'm willing to sacrifice some quality to that end.

    


  • Convert HEVC/H.265 video to a more widely supported format using fluent-ffmpeg in Node.js

    21 juin 2021, par Daniel Loiterton

    My app allows users to upload videos from their phones. However, the latest iPhone default format (HEVC / H.265) does not seem to be supported by Chrome and other browsers, so some users cannot stream the videos.

    


    I'm already using fluent-ffmpeg on my Node.js backend to read metadata and extract thumbnails from the uploaded videos. How would I go about converting HEVC videos to something else ? What format/options would be appropriate for streaming to browsers ? Ideally I'd like to keep files fairly small, and I'm willing to sacrifice some quality to that end.