Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (44)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8262)

  • mov : store display matrix in a stream side data

    16 mai 2014, par Vittorio Giovara
    mov : store display matrix in a stream side data
    

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/isom.h
    • [DBH] libavformat/mov.c
  • avpacket : fix copying side data in av_packet_copy_props()

    18 mai 2014, par Anton Khirnov
    avpacket : fix copying side data in av_packet_copy_props()
    

    Side data count is incremented by by calling av_packet_new_side_data()
    in the following loop, setting it explicitly results in the resulting
    value being twice what it should be.

    CC : libav-stable@libav.org

    • [DBH] libavcodec/avpacket.c
  • Side by Side Videos with faster frame rate [migrated]

    19 mai 2014, par user2632203

    I have been able to combine two videos into one single video with a side by side overlay and I have been able to increase the framerate for a movie but I cannot figure out how to do both. I have tried the following.

    ffmpeg -i gp1.mp4 -i gp2.mp4 -filter_complex "[0:v]setpts=0.077*(PTS-STARTPTS),    pad=iw*2:ih[bg]; [1:v]setpts=0.077*(PTS-STARTPTS)[fg]; [bg][fg]overlay=W-w-10:0:shortest=1[out]" -map "[out]" -map 0:a -c:v libx264 -crf 19 output2.avi

    My problem is that the output2.avi has all the frames sped up it plays fine but at the end of the compressed time it plays the last frame for what would be the duration of the non sped up version.

    normal sped up video takes 20 mins of play back and gives 3 min in the output file.

    side by side give 3 mins of sped video then 17 min of the last frame in output file.