Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (86)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

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