Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (82)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (8473)

  • Evolution #4399 : drag and drop universel

    20 novembre 2019, par Peet du

    Je crois que la demande de Josiane est directement liée à https://core.spip.net/issues/4305.

    Proposition
    1- renommer le plugin "rang_auteur" (voir https://zone.spip.net/trac/spip-zone/browser/_plugins_/rang_auteurs) en "rang_liens"
    2- ajouter dans ce plugin les fichiers suivants :

    • /prive/objets/liste/mots_lies.html
    • /prive/objets/liste/mot-admin_fonction.php (pas sûr qu’il soit utile, à vérifier)

    3- modifier en conséquences le plugin lui même (fichiers _pipeline, _administration, etc.)

    Ceci permettrait de tester plus en avant ce POC (Proof Of Concept)

    Si ok avec cette proposition, je veux bien m’en occuper…

  • FFMPEG filtergraph 'warning, too many B-frames in a row' [on hold]

    26 juin 2017, par Leif Andersen

    I am trying to append two videos together with FFmpeg’s filtergraph. One video is sized 1920x1080 at 30fps, and another 1280x720 at 25fps. Both use yuv420p, and have the same pixel densities. I am currently ignoring the audio tracks. The following is my filtergraph :

    [video2]fifo[video3];
    [video3]pad=width=1920:height=1080[video9];
    [video9]fps=fps=25[video11];
    [video11]setpts=expr=PTS-STARTPTS[video17];

    [video6]fifo[video7];
    [video7]pad=width=1920:height=1080[video13];
    [video13]fps=fps=25[video15];
    [video15]setpts=expr=PTS-STARTPTS[video19];

    [video17][video19]concat=v=1:a=0:n=2[video21];
    [video21]pad=width=1920:height=1080[video23];
    [video23]fps=fps=25[video25];
    [video25]format=pix_fmts=yuv420p[video27]

    The first chain tries to convert the first video into a common format, that starts at 0 for the concat filter. The second chain does the same as the first. Finally, the third chain concatenates them videos together, and sets some properties for the resulting playlist.

    Unfortunately, when I run this error, ffmpeg repeatedly outputs :

    [mpeg4 @ 0x7fc16a810600] warning, too many B-frames in a row

    When finished, I see the first video, padded to the correct resolution and frame rate, but instead of the second Video I see black. Additionally, the entire video is several days in length, starting with the first Video and ending in several days of just black.

    I cannot figure out why I am getting this error, as it seems like I am setting the videos to have identical properties. What am I missing ?

    Also, for what its worth, I am using FFmpeg’s C API rather than the command line tool. I am using libavformat/libavcodec/libavutil to do the encoding/decoding and libavfilter for the filtergraph.

  • ffmpeg : playing udp stream

    14 novembre 2013, par deimus

    I'm playing udp stream on iDevice using ffmpeg.
    It does play the video and audio successfully.

    The only issue I've got here that the following function call does take a long time

    avformat_find_stream_info

    It takes about 10 secs to complete the execution of this function.
    The media that I'm playing has following properties :

    MPEG-4 VIDEO v3 (DIV3)
    RESOLUTION : 640x480
    Frame rate : 25

    Any ideas how to workaround this delay ?