Recherche avancée

Médias (91)

Autres articles (53)

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

  • How to add srt embedded subtitles from source video, to ouput hls playlist video ?

    2 mars 2023, par iarwain8a

    I have a source video "video.mkv" that has srt embedded subtitles, and I want to encode that file into an HLS playlist that is compatible with html5 video player.

    


    So far I got this :&#xA;ffmpeg -i <path> -map 0:s:1 -c:s:1 srt -f webvtt <hlsdir>/1subs.vtt -c:a aac_mf -b:a 128k -c:v copy -hls_time 7 -hls_list_size 0 -hls_segment_filename <hlsdir>/segment%d.ts <hlsdir>/playlist.m3u8 -loglevel debug</hlsdir></hlsdir></hlsdir></path>&#xA;What this line does, is extract and encode the subtitles at the same time, leaving them in the output folder, also it encodes the audio of the video to aac, and leaves the codec of the video as is.

    &#xA;

    I tried a bunch of different commands with ffmpeg to no avail, a bunch of different errors came up.&#xA;I want to, in the same line, instead of just extracting the subtitles, to also be able to add them to the hls playlist, which I couldn't do.

    &#xA;

  • Converting MP3 to Video with Single/Multiple images as video with PHPVideoToolkit

    8 février 2015, par Wasim

    Just started using PHPVideoToolkit and I’m looking to take an MP3 and convert it to a video. I want to have a single image as the video with the audio playing.

    On the Google Code page https://code.google.com/p/phpvideotoolkit/ it says it can assemble a video stream from a set of separate video images so I know it’s possible but I cannot figure out how from the GitHub documentation.

    The documentation found in the documentation directory of the repository appear to be empty.

    Help is much appreciated

  • How to bookmark a video, to skip the video to a cetain duration ?

    17 août 2016, par Prasanth Kumar Arisetti

    I am encoding the incoming camera data, using x264 encoder and mpegtsmux to a filesink .ts files.

    I am pushing the buffers to the pipeline, using, g_signal_emi_by_name.

    Pipeline is something like this :

    gst-launch-1.0 v4l2src ! videoconvert ! video/x-raw,width=720,height=576,framerate=25/1 ! x264enc ! mpegtsmux ! filesink  location=test.ts

    Now, for that video, i would like to add bookmarks for certain duration to directly skip the video to that duration, when click on that duration.

    How can i add bookmarks to that video ?