Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (76)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

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

Sur d’autres sites (6024)

  • hwcontext_vulkan : split uploading and downloading contexts

    15 mai 2020, par Lynne
    hwcontext_vulkan : split uploading and downloading contexts
    

    This allows us to speed up only-uploading or only-downloading use cases.

    • [DH] libavutil/hwcontext_vulkan.c
  • How to split a video using FFMPEG so that each chunk starts with a key frame ?

    16 novembre 2023, par sboisse

    We need to split a large live WMV video feed in small chunks all of the same size. We made a script that works fine doing this, except for one thing : the video chunks don't start with a key frame, so when playing most video chunks they don't display any image until a key frame from the original video is eventually reached.

    



    Isn't there a way to tell ffmpeg to make the output video to start with a key frame ?

    



    Here is how our command lines look right now :

    



    ffmpeg.exe -i "C:\test.wmv" -ss 00:00:00 -t 00:00:05 -acodec copy -vcodec copy -async 1 -y  "0000.wmv"
ffmpeg.exe -i "C:\test.wmv" -ss 00:00:05 -t 00:00:05 -acodec copy -vcodec copy -async 1 -y  "0001.wmv"


    



    and so on...

    


  • How to split a video using FFMPEG so that each chunk starts with a key frame ?

    17 octobre 2015, par sboisse

    We need to split a large live WMV video feed in small chunks all of the same size. We made a script that works fine doing this, except for one thing : the video chunks don’t start with a key frame, so when playing most video chunks they don’t display any image until a key frame from the original video is eventually reached.

    Isn’t there a way to tell ffmpeg to make the output video to start with a key frame ?

    Here is how our command lines look right now :

    ffmpeg.exe -i "C:\test.wmv" -ss 00:00:00 -t 00:00:05 -acodec copy -vcodec copy -async 1 -y  "0000.wmv"
    ffmpeg.exe -i "C:\test.wmv" -ss 00:00:05 -t 00:00:05 -acodec copy -vcodec copy -async 1 -y  "0001.wmv"

    and so on...