Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (107)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (14199)

  • How to Loop Input video x number of time using FFMPEG ?

    17 février 2017, par Hitesh Shukla

    I want to loop same video 4 times and output as video using ffmpeg.
    SO I create code like this in ffmpeg.

    ffmpeg -loop 4 -i input.mp4 -c copy output.mp4

    but when i run it it give the error like this.

    Option Loop Not Found.

    how to do this withour error. Please Help Me

  • doc/utils : rewrite doc for time duration syntax

    4 septembre 2013, par Timothy Gu
    doc/utils : rewrite doc for time duration syntax
    

    Extend description and clarify syntax.

    Signed-off-by : Timothy Gu <timothygu99@gmail.com>
    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/utils.texi
  • ffmpeg time unit explanation and av_seek_frame method

    3 septembre 2013, par user325320

    What does time_base mean in ffmpeg ? document(here) says it is "frames per second".
    and I see in a real example that :

    AVFormatContext->streams[video_index]->time_base == 1 / 30000

    But video's AVCodecContext->time_base == 1001 / 60000

    This makes me quite confused, and I don't understand them.

    The second question is about av_seek_frame method.
    If seeking via time stamp (last parameter is AVSEEK_FLAG_BACKWARD or 0),
    the seek is started from current position read by av_seek_frame ?
    or from the start of the file ? or from the start position of decoding after last av_seek_frame call ?