Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (19)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (3768)

  • hevc : split out setting AVCodecContext parameters

    29 mars 2015, par Anton Khirnov
    hevc : split out setting AVCodecContext parameters
    

    Additionally always set the software pixel format, so it’s available
    even if ff_get_format() is not called later. This will be useful for
    exporting stream parameters from init().

    • [DH] libavcodec/hevc.c
  • jffmpeg.jar how to split a video file to many chunks- Java, Groovy, Grails, Video

    9 janvier 2014, par user1245222

    I was googling whole day to find a proper documentation to split a video using jffmpeg.jar. But unfortunately, I couldn't find anything.

    Using java -> groovy, I was able to use native command to split the same. Below is the command.

    def command = """ffmpeg -i /opt/eboxdata/uploads/719/Resource/Alfred Hitchcock - Making of Psycho.mp4 -vcodec copy -acodec copy -ss 00:00:00 -t 00:05:00 /opt/eboxdata/uploads/719/Resource/output2.avi"""// Create the String

           def proc = command.execute()                 // Call *execute* on the string
           proc.waitFor()

    Any one could help me to split a video file without using native command. But using jffmpeg.jar

  • vp9 : split last/cur_frame from the reference buffers.

    23 novembre 2013, par Ronald S. Bultje
    vp9 : split last/cur_frame from the reference buffers.
    

    We need more information from last/cur_frame than from reference
    buffers, so we can use a simplified structure for reference buffers,
    and then store mvs and segmentation map information in last/cur.

    • [DH] libavcodec/vp9.c