Recherche avancée

Médias (91)

Autres articles (76)

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

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

Sur d’autres sites (10873)

  • lavf/http: handle case where the server returns a redirect during a seek

    13 avril 2015, par Rodger Combs
    lavf/http: handle case where the server returns a redirect during a seek
    

    txoffer (e.g. http://tori.aoi-chan.com/ ) redirects to the same URI on your
    first request, and serves the actual file on the second. It’s stupid, but AFAIK
    technically compliant. We’d previously see the server not handing back a Range
    header and return an error ; now, instead, we see that there’s a redirect and
    keep track of the offset we want while trying again at the new URL.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c
  • create mp4 slide show on raspbian

    25 novembre 2020, par Ramin

    I have RPi running raspbian.&#xA;I want a solution to convert a folder of image files to an mp4 slide show video that can be played with omxplayer.&#xA;I did it with ffmpeg and following command :

    &#xA;

    ffmpeg -y -framerate .1 -pattern_type glob -i &#x27;*.jpg&#x27; -c:v libx264 -pix_fmt yuv420p out.mp4&#xA;

    &#xA;

    It works with mpv media player but playing it with the flowing command with omx player does not do anything.

    &#xA;

    omxplayer --loop --no-osd --win 0,0,128,224 --orientation 90 out.mp4&#xA;

    &#xA;

    I must use omx player to output on exact window and be compatible with older programs.&#xA;Not sure what would be the right way to do this. I have already a node js server running on Pi that I can use if needed.&#xA;Thanks

    &#xA;

  • Subtitles won't show on video after burning [closed]

    9 octobre 2023, par dra

    I'm trying to burn subtitles into a video using ffmpeg js and ffmpeg wasm in my NextJS app.&#xA;the issue is, after running the subtitles just won't show.&#xA;my code is as follows

    &#xA;

    await ffmpeg.exec([&#xA;    &#x27;-i&#x27;,&#xA;    `${fileName}`,&#xA;    &#x27;-vf&#x27;,&#xA;    "subtitles=subtitles.srt:force_style=&#x27;Fontname=Helvetica,PrimaryColour=&amp;HFF00&#x27;",&#xA;    `${fileName}_final.mp4`,&#xA;])&#xA;

    &#xA;

    from the terminal it works as expected

    &#xA;

    tried to run it on .srt and .ass files too, with and without font specification for both file types

    &#xA;