Recherche avancée

Médias (91)

Autres articles (75)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (13817)

  • movenc : Remove an unnecessary condition when flushing fragments

    18 décembre 2014, par Martin Storsjö
    movenc : Remove an unnecessary condition when flushing fragments
    

    If fragments == 0 it means we haven’t written any moov atom yet.
    If the empty_moov flag is set, we already have written an empty moov
    atom at startup. Thus, the check for empty_moov is redundant.

    This is in preparation for allowing writing the moov atom later,
    even when using the empty moov flag.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc.c
  • How can I transform a sequence of images into a playable video using LibVLCSharp ?

    9 février 2021, par adamasan

    I have a sequence of images that I was able to extract from a video using LibVLCSharp. This sample to be more specific. I'm creating a small video library manager for learning purposes, and I would like to extract frames and create thumbnails to play when the user hovers the mouse over the previewer.

    &#xA;

    Using the aforementioned sample I was able to create a WPF UI around the same loging and extract the frames from a video file. However what I want now is to convert these extracted frames into a video file, using them as preview for the video, just like happens on YouTube.

    &#xA;

    I wasn't able, however, to find out how to achieve this using LibVLCSharp or just LibVLC. Using this answer on Super User I was able to achieve my goal and put those frames together into a video using ffmpeg.

    &#xA;

    I haven't taken the time yet to study FFmpeg.Autogen, so I don't know if I would be able to extract the frames from the video files in the same way I can do with LibVLCSharp, but I don't see with good eyes using both libraries on my application, one to export the frames and one to generate these frames into a video.

    &#xA;

    So, is there a way to get the output frames and convert them into a playable video using LibVLCSharp (or libvlc) itself ?

    &#xA;

  • Can ffmpeg seek when using an input stream (or url) ?

    27 juin 2022, par Roee

    I've been using ffmpeg quite a lot in the past few weeks, and recently I've encountered a very annoying issue - when I use ffmpeg with an input stream (usually, just a url as the input) and try to set a start time (with -ss option), I always get a warn message that says "could not seek to position : XXX".

    &#xA;&#xA;

    Then, ffmpeg just starts to download the file, and it ouputs nothing until it has downloaded enough data and got to my desired start time.

    &#xA;&#xA;

    I'll give an example :

    &#xA;&#xA;

    I use this command to execute ffmpeg :

    &#xA;&#xA;

    ffmpeg -ss 50 -re -i https://ascent.usbank.com/acp/videos/041114ascent.flv -b:a 128k -ac 2 -acodec libvorbis -b:v 1024k -vcodec libtheora -strict 2 -preset ultrafast -tune zerolatency -pix_fmt yuv420p -f ogg pipe:1&#xA;

    &#xA;&#xA;

    and I get the warn message

    &#xA;&#xA;

    https://ascent.usbank.com/acp/videos/041114ascent.flv: could not seek to position 50.000&#xA;

    &#xA;&#xA;

    Then, it takes about 30 seconds until ffmpeg starts to output data to stdout. And when I try this with longer videos (and longer seek times), it takes even longer.

    &#xA;&#xA;

    My question is, what can I do ? I guess it's impossible for ffmpeg to seek when it haven't got the whole input stream... Am I wrong ? Or is there any other solution ?

    &#xA;&#xA;

    Of course I try to avoid downloading the entire file from the web...

    &#xA;&#xA;

    Thanks in advance !

    &#xA;&#xA;

    Roee.

    &#xA;