Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (111)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9379)

  • Record specific window using ffmpeg

    5 décembre 2022, par Ahmed A. Mansour

    I have been trying the below code (which I found on other similiar problem on this site here : How to record a specific window using ffmpeg But it gives me black video and the same video is not playable by windows media player (it works on vlc but with black video..)

    


    ffmpeg -f gdigrab -framerate 30 -i title="german.avi - VLC media player" -b:v 3M  germ.flv


    


    Video example :
Weird thumbnail by WMP which shows it can't play it
Black screen as described, but it opens with black video in VLC

    


    I tried the other suggestions, but this one sometimes (less than 40% of the time) works.
I also noticed it doesn't show the window main title, which is a bit confusing, as it causes the mouse cursor to appear a little down where it should be.

    


  • Cannot get first frames using av_seek_file

    31 janvier 2014, par JonesV

    I want to seek for an arbitrary frame in a video using libav. More precisely, using the function avformat_seek_file, which apparently uses av_seek_frame internally.

    I want to make a backward search (i.e. to get the closest possible frame before the one I seek), so that I can then go forward until I find precisely the one I want. For this, I use the function as follows :

    avformat_seek_file(..., ...,
                      std::numeric_limits::min(),
                      target_pts,
                      target_pts,
                      ...);

    Which means that I don't have any tolerance about finding a frame that comes after my target_pts, but I am happy with any frame coming before.

    I am using the Big Buck Bunny videos for testing. Using the 480p H.264 video, I can seek any pts without problems. But using the 480p OGG video, I can't. Actually, I can seek for any frame after pts = 73, but not before. Seeking for pts = 0 sets the video to pts = 73.

    One might think that the stream actually begins at pts = 73, but this is not what <stream>.start_time</stream> returns. Moreover, if I only load the video and read the frames in order, I can get the first 73 frames without any problem. The issue is that I can never come back to one of those frames by using avformat_seek_file.

    Last point : if I use the flag AVSEEK_FLAG_ANY, then it works. But that might result in me decoding only a part of the frame I want, which is not a solution for me.

    Can anybody explain this weird behavior ?

  • Cannot get first frames using avformat_seek_file

    14 octobre 2015, par JonesV

    I want to seek for an arbitrary frame in a video using libav. More precisely, using the function avformat_seek_file, which apparently uses av_seek_frame internally.

    I want to make a backward search (i.e. to get the closest possible frame before the one I seek), so that I can then go forward until I find precisely the one I want. For this, I use the function as follows :

    avformat_seek_file(..., ...,
                      std::numeric_limits::min(),
                      target_pts,
                      target_pts,
                      ...);

    Which means that I don’t have any tolerance about finding a frame that comes after my target_pts, but I am happy with any frame coming before.

    I am using the Big Buck Bunny videos for testing. Using the 480p H.264 video, I can seek any pts without problems. But using the 480p OGG video, I can’t. Actually, I can seek for any frame after pts = 73, but not before. Seeking for pts = 0 sets the video to pts = 73.

    One might think that the stream actually begins at pts = 73, but this is not what <stream>.start_time</stream> returns. Moreover, if I only load the video and read the frames in order, I can get the first 73 frames without any problem. The issue is that I can never come back to one of those frames by using avformat_seek_file.

    Last point : if I use the flag AVSEEK_FLAG_ANY, then it works. But that might result in me decoding only a part of the frame I want, which is not a solution for me.

    Can anybody explain this weird behavior ?