Recherche avancée

Médias (1)

Mot : - Tags -/university

Autres articles (111)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8745)

  • What video codecs work on Google Chromebook

    3 mars 2019, par MonkeyDLuffy

    I’m trying to put a show on my friends Google Chromebook but the mp4 files show up black when trying to watch them on said Chromebook, audio works fine. I found out that it is a video encoding problem but I cannot find a list of video formats that work on the Chromebook. I have ffmpeg and handbrake to try and test some things, but if someone could tell me a ffmpeg code that will convert the video files into a format that works on a Google Chromebook that would help a lot.

    What I’ve tried :

    ffmpeg -i "Game of Thrones S02E01 The North Remembers.mkv" codec mpeg "Game of Thrones S02E01 The North Remembers.mp4"

    Which gives error :

    [NULL @ 00000177196ea500] Unable to find a suitable output format for
    ’codec’ codec : Invalid argument

  • how to change ffmpeg to live555

    9 septembre 2015, par Yasin SOYASLAN

    I have a code with ffmpeg to get stream and record it.

    int Ret=avformat_open_input(&mFormatContext,rtspUrl,NULL,NULL);

    if(Ret<0){
       //debugl(2,"Could not connect to camera! Error code:%d\n",Ret);
       return FAIL;
    }

    so it fills AVFormatcontext and open a stream

    but i need to change of getting frame way. I’m using live555 to connect camera and get frame. Now I have data frames but i cannot fill FormatContext with that.

    Are there any function to fill FormatContext with live555 frames ?
    I’m stuck here

  • How do I draw a line over a video whose width equals the current timeframe using FFMPEG

    19 août 2019, par Martin Mbae

    I am trying to draw a line across a video to show the progress of the video.

    Using FFMPEG I am able to draw a line using this code

    ffmpeg -i video.mp4 -vf drawbox=w=10:h=10:color=pink:t=fill output.mp4

    I, however want to alter the width of the line to be equal to "Total number of frames divided by the current frame"

    I am using this code

    ffmpeg -i video.mp4 -vf drawbox=w="%{frame_num/120}":h=10:color=pink:t=fill output.mp4

    which is giving me this error

    [Eval @ 00000072037fe4f0] Undefined constant or missing ’(’ in ’%frame_num/120

    I have also tried the code below which is also not giving me what I want.

    ffmpeg -i video.mp4 -vf drawbox=w='text=%{frame_num/120}':h=10:color=pink:t=fill output.mp4

    How do I go about this. Specifically how to set the width of the box to be equal to the number of the current frame