Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (71)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

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

  • FFMPEG Start 2 videos at the same time but hide one until the other is finished

    23 mai 2016, par GreenGiant

    I have a generic intro sequence (no audio) and a main video clip. I want the audio from the main clip to play as the intro sequence is playing then the video to switch from the finished intro sequence to the main video. So almost like playing both videos at the same time but hiding one until the other is finished. Is this possible with ffmpeg ? Almost like a send to back function for the video on the main clip (but keep it’s audio rolling so it’s in sync when it shows as the intro clip finishes).

  • What's the best way to clip a live HLS feed at a certain date/time ?

    23 mai 2016, par Ryan Detzel

    I can record the whole stream using ffmpeg but I only want to record a certain part, say starting at 10:00:30-04:00 and recording for 30 seconds. I can’t find a way to do this with ffmpeg directly so I’m thinking of using a script to watch the HLS feed and when that time comes (via EXT-X-PROGRAM-DATE-TIME) trigger ffpmeg to start recording for 30 seconds. Is there a better way to do this ?

  • avcodec/utils : av_register_codec & hwaccel() that work in O(1) time

    8 décembre 2013, par Michael Niedermayer
    avcodec/utils : av_register_codec & hwaccel() that work in O(1) time
    

    Its possible to implement this with a few lines less code but it then
    would flip the order of the list and require registration of external
    codecs to be done first, also it could break user applications due to
    this. Thus to maintain ABI this slighty more complex solution is
    used.

    Reviewed-by : Stefano Sabatini
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/utils.c