Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (66)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (4331)

  • mfenc : Avoid including codecapi.h, fix building in UWP mode with clang

    25 mai 2020, par Martin Storsjö
    mfenc : Avoid including codecapi.h, fix building in UWP mode with clang
    

    Including codecapi.h and uuids.h in UWP mode doesn't define all defines
    properly, ending up with constructs that MSVC silently tolerates, but
    that clang errors out on, like this :
    DEFINE_GUIDEX(CODECAPI_AVEncCommonFormatConstraint) ;

    Just avoid including codecapi.h completely and hardcode the last few
    enum values we use from there. We already use local versions of most
    enums from there, due to older mingw-w64 headers being incomplete.

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

    • [DH] libavcodec/mf_utils.h
    • [DH] libavcodec/mfenc.c
  • HTML5 / and live transcoding with FFMPEG

    13 mai 2020, par TooTallNate

    So from my web server, I would like to use FFMPEG to transcode a media file for use with an HTML <audio></audio> or <video></video> tag. Easy enough right ?

    &#xA;&#xA;

    The conversion would need to take place in real-time, when an HTTP client requested the converted file. Ideally the file would be streamed back to the HTTP client as it is being transcoded (and not afterwards at the end, since that would potentially take a while before any data starts being sent back).

    &#xA;&#xA;

    This would be fine, except that in today's browsers, an HTML5 audio or video tag requests the media file in multiple HTTP requests with the Range header. See this question for details.

    &#xA;&#xA;

    In that question linked above, you can see that Safari requests weird chunks of the file, including the ending few bytes. This poses a problem in that the web server WOULD have to wait for the conversion to finish, in order to deliver the final bytes of the file to conform to the Range request.

    &#xA;&#xA;

    So my question is, is my train of thought right ? Is there a better way to deliver transcoding content to an <audio></audio> or <video></video> tag that wouldn't involve waiting for the entire conversion to finish ? Thanks in advance !

    &#xA;

  • mac terminal ffmpeg batch recursive conversion preserving directory structure

    13 avril 2020, par kidnim

    i'm using ffmpeg on mac to batch convert .flv to .mp4 files. i'm trying to find all files in subdirectories of the current directory and save new files in the same directory.

    &#xA;&#xA;

    for instance starting with :

    &#xA;&#xA;

    subdirectory1/video1.flv&#xA;subdirectory1/video2.flv&#xA;subdirectory2/video1.flv&#xA;

    &#xA;&#xA;

    and ending with

    &#xA;&#xA;

    subdirectory1/video1.mp4&#xA;subdirectory1/video2.mp4&#xA;subdirectory2/video1.mp4&#xA;

    &#xA;&#xA;

    i've gotten this far but can't figure out how to save with preserved recursive directories

    &#xA;&#xA;

    for i in  `find -name . "*.flv"`; do ffmpeg -i "$i" "${i%.*}.mp4"; done&#xA;

    &#xA;