Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (93)

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

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (10645)

  • ffmpeg scale doesn't work if destination res is larger than source

    21 décembre 2017, par Vibok

    I just tried ffmpeg filter scale=320x180:force_original_aspect_ratio=disable to resize a 270x480 video into a 320x180 video, and it still keeps aspect ratio. force_original_aspect_ratio=disable got ignored.

    I guess the problem is that the destination width is bigger than the source width, while the destination height is smaller. Because it worked for other videos, even without force_original_aspect_ratio=disable.

    The resulted file is also weird. It says it’s 320x180, while its weight is obliviously smaller than that.

    Here are the video files, original and resized. https://drive.google.com/file/d/1UNXlfwpzoizhx7WOjqn44mlcbQgacOHS/view?usp=sharing

    Here is my command :

    ffmpeg -i 480P_600K_107047752.mp4 -force_key_frames 00:00:03.000 -filter_complex [0:v]scale=320x180:force_original_aspect_ratio=disable,fps=30[vid];[vid]
  • 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..)

    &#xA;

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

    &#xA;

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

    &#xA;

    I tried the other suggestions, but this one sometimes (less than 40% of the time) works.&#xA;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.

    &#xA;

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