Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (83)

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

  • Estimate time and memory required when transcoding video FFMPEG [on hold]

    8 mars 2019, par Anh Vo Nguyen Nhat

    Currently, I am trying to predict beforehand the time it takes when transcoding a video (e.g. transcoding 1920x1080 H264 video to 1280x720 VP9) using FFMPEG tool.
    I have used the following features to build a simple neural network to predict the time :
    - Video Resolution (Input + Output)
    - Video Duration
    - Video Codec (Input + Output)
    - Video Bitrate
    - Video Framerate
    - Number of B, I, P frames

    However, the result is not really promising. I want to ask if there is any other way to estimate/predict the time it takes when transcoding a video ? Are there any other features beside the listed that affects the transcoding time ?

    Beside the transcoding time, I also need to forecast the memory required by the process. I see a linear relation between the output resolution and the consumed memory. However, when trying with different computers the consumed memory are different. For example, 128GB computer would take 57GB to transcode, but for 64GB computer, it only takes 37GB. Is there any formula to calculate the required memory from the FFMPEG transcoding algorithm ?

  • Merge video files based on the start time [closed]

    11 août 2020, par Nintendo Custom

    I have two MPEG-TS (h264) files with different start times. The first part overlaps the second part, so if you just put the files together, you have to see and hear the same part of the files twice.

    


    Can I merge the two files so that I have a file that does not show the same part twice ?
I was thinking that someone could code something that gets the start time and then the end time and then merge it with ffmpeg or something like that.

    


  • ffmpeg not giving output files in desired segmented time

    11 mai 2017, par Syam Pradeep

    I am capturing my screen and saving it locally with segment time as 1 sec.Here is the ffmpeg command

    ffmpeg -rtbufsize 1500M -r 10 -f dshow -i video="screen-capture-recorder" -map 0 -codec:v libvpx -minrate 6M -maxrate 6M -b:v 6M -f segment -flags -global_header -segment_format webm -segment_time 1 -preset ultrafast segment%03d.webmm

    The segmented videos are having a duration of 5 sec contrary to the segment time of 1s.