Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (77)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

Sur d’autres sites (10188)

  • cpu : split flag checks per arch in av_cpu_max_align()

    14 septembre 2017, par James Almer
    cpu : split flag checks per arch in av_cpu_max_align()
    

    Signed-off-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavutil/aarch64/cpu.c
    • [DBH] libavutil/arm/cpu.c
    • [DBH] libavutil/cpu.c
    • [DBH] libavutil/cpu_internal.h
    • [DBH] libavutil/ppc/cpu.c
    • [DBH] libavutil/x86/cpu.c
  • Revision 8fdfeb3f40 : Merge "vpxenc.sh : Add basic multithreaded frame parallel encode test."

    26 juin 2015, par Tom Finegan

    Merge "vpxenc.sh : Add basic multithreaded frame parallel encode test."

  • Combining a few shifted streams with ffmpeg - result's expected duration is incorrect

    27 octobre 2019, par galra

    I need to combine a few streams (videos + an audio), all shifted compare to each other and in different lengths, to a file with synchronized streams. Using a dummy case, I found out the following command will create a file with the video shifted by 10sec compare to the audio, playing in full length :

    ffmpeg -i in.mp4 -itsoffset 10 -i in.mp4 -c copy -map 0:1 -map 1:0 -t  out.mp4

    if the -t flag is dismissed, the original length will be kept, and vlc would stop playing and effectively truncate the last 10sec of the video stream. With mkv however it won’t be truncated, and the presented video length increases by 10secs as expected. Also, ffplay won’t truncate the mp4, rather it will play it until the end, but once the original ending timestamp is reached, the timestamp "freezes" and A-V starts gaining (negative) increasing values. ffplay output will be as :

    368.34 A-V: -6.124 fd=  14 aq=    0KB vq=    0KB sq=    0B f=0/0

    also ffprobe will present the original duration :

    Duration: 00:06:08.71, start: 0.000000, bitrate: 304 kb/s

    where it should have been 00:06:18.71. I’m no expert, but I guess that there’s some metadata field in the mp4 container that tells the total duration. Is there a way to update it, or must I convert the files to mkv to avoid the wrong & confusing duration indication ?