Recherche avancée

Médias (91)

Autres articles (42)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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" ;

Sur d’autres sites (6775)

  • Can't able to combine mp4 videos using MP4Box

    30 décembre 2013, par rajeshkumar

    I am using MP4box to combine mp4(H264) videos, If two video will combine means, the videos are combine but the first video are repeating twice and its play. Before that i used FFmpeg to convert the mp4 videos as constant bitrate,dimensions etc. I thing that may problem occurs. I used the command as given below :

    ffmpeg -i inputfile.mp4 -r 25 -s 640x360 -ar 48000 -acodec copy -f mp4 -vcodec libx264 -vpre normal outputfile.mp4

    MP4Box -force-cat -cat outputfile1.mp4 -cat outputfile2.mp4 -new largeOutput.mp4

    Kindly suggest me any solution....

  • Are the av_free* functions in ffmpeg idempotent ?

    19 mars 2014, par Dan Hook

    Specifically I'm looking at avformat_free_context. In normal execution of my code, avformat_free_context is called appropriately. I would also like to call it in the destructor of a class, in case there was an exceptional case that caused the code using the AVFormatContext to return early. Do the ffmpeg free functions behave appropriately when called on already freed data structures ?

  • rtpenc_chain : Don’t copy the time base to the source stream by default

    31 mai 2014, par Martin Storsjö
    rtpenc_chain : Don’t copy the time base to the source stream by default
    

    Only copy it manually in the muxers where it makes sense (rtspenc,
    sapenc). Don’t touch the original AVStream in movenchint, where
    the original AVStream should be kept untouched.

    This fixes the normal tracks in RTP hinted files after
    abb810db - the hint tracks were ok while the normal media tracks
    were broken, noticed by Michael Niedermayer.

    This reverts abb810db but achieves the same effect for the other
    muxers.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/rtpenc_chain.c
    • [DBH] libavformat/rtsp.c
    • [DBH] libavformat/sapenc.c