Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10298)

  • Hide system message while running ffmpeg

    13 novembre 2013, par Irene T.

    I am using the code bellow to grab an image from a video file and it is working great.
    But when i am running the php file that contains the code bellow all system procceses appears, and i mean some infos about the convertion, export etc.

    How can i make it run silent ?

    $stderr = system("ffmpeg -i $videoPath -vframes 1 -an -s 306x173 -ss 03 $finalfilename 2>&1 >/dev/null", $exit_status);

    if ($exit_status === 0) {
       print 'Done! :)';
    } else {
       print 'Error... :/';
       // $stderr will help you figure out what happened...
    }
  • ffmpeg - Fill audio frame with audio sample

    24 novembre 2015, par Victor Canezin de Oliveira

    I’m trying to encode an audio stream to a file. I’m receiving the audio buffers and using avcodec_fill_audio_frame to create an AVFrame and send it to avcodec_encode_audio2 (with some other thing in between - I`m using ffmpeg muxing.c as an example)

    The thing is : The audio buffer I’m getting contains 480 samples, the codec I’m using has a frame_size of 1152 (MP2). The result is that the output audio file is kinda "chopped". It sounds like every audio frame has some silent samples in the end.

    How can I fix this ?
    Thanks !!

  • ffmpeg - how do you silence a section of video with multiple audio tracks

    28 septembre 2014, par ChrisinNL

    I have been trying to silence a section of a video with multiple audio streams. I’m not getting it to work correctly.

    Trying with afade option gives me a silent video

    ffmpeg -i input.asf -c:v copy -af "afade=t=out:st=10,afade=t=in:st=30" output.asf

    Do I need to specify all the audio streams as well ? Is there a better way to insert silence with a given time and duration ?