Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (59)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (15247)

  • avfilter/graphparser : allow specifying filter@id as filter instance

    17 mai 2017, par Muhammad Faiz
    avfilter/graphparser : allow specifying filter@id as filter instance
    

    See http://lists.ffmpeg.org/pipermail/ffmpeg-user/2017-April/035975.html
    Parsed_filter_X could remain and user can override it with custom one.

    Example :
    ffplay -f lavfi "nullsrc=s=640x360,
    sendcmd='1 drawtext@top reinit text=Hello ; 2 drawtext@bottom reinit text=World',
    drawtext@top=x=16:y=16:fontsize=20:fontcolor=Red:text='',
    drawtext@bottom=x=16:y=340:fontsize=16:fontcolor=Blue:text=''"

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/graphparser.c
  • Pipe PIL images to ffmpeg stdin - Python

    9 mai 2017, par bluesummers

    I’m trying to convert an html5 video to mp4 video and am doing so by screen shooting through PhantomJS over time

    I’m also cropping the images using PIL so eventually my code is roughly :

    while time() &lt; end_time:
       screenshot_list.append(phantom.get_screenshot_as_base64())
    .
    .
    for screenshot in screenshot_list:
       im = Image.open(BytesIO(base64.b64decode(screenshot)))
       im = im.crop((left, top, right, bottom))

    Right now I’m saving to disc all those images and using ffmpeg from saved files :

    os.system('ffmpeg -r {fps} -f image2 -s {width}x{height} -i {screenshots_dir}%04d.png -vf scale={width}:-2 '
         '-vcodec libx264 -crf 25 -vb 20M -pix_fmt yuv420p {output}'.format(fps=fps, width=width,
                                                                     screenshots_dir=screenshots_dir,
                                                                     height=height, output=output))

    But I want instead of using those saved files, to be able to pipe the PIL.Images directy to ffmpeg, how can I do that ?

  • ffmpeg with m3u8 : video and audio not synchronized

    3 avril 2017, par lemel

    I noticed while using ffmpeg to download m3u8 streaming playlist, I get sometimes faster video.
    If the content of the url master.m3u8 is the following :

    #EXTM3U
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=620941,RESOLUTION=640x352,CODECS="avc1.4d401f,mp4a.40.2"
    https://hello/world.m3u8

    If I’m not mistaken, ffmpeg should be able to decode the EXT-X-STREAM-INF information and assign the default value while downloading.
    But when I run the following command :

    ffmpeg -i "https://hello/darkness/my/old/friend/master.m3u8" -c copy "Some Video File.ts"

    I get a video that is faster than the Audio.
    If I run this command without the -c copy :

    ffmpeg -i "https://hello/darkness/my/old/friend/master.m3u8" "Some Video File.ts"

    I get a video and audio synchronized. But the video quality is worse.

    What’s the problem ?