Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (95)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (13288)

  • FFmpeg ios sample code for video streaming

    29 avril 2014, par iJose

    I have done with Video Encoding using AVFoundation framework in ios.

    Now i want to stream these video to a RTMP server using FFMPEG.
    IT would be great help if anyone of you post a link / sample Code for achieving this.
    Any other Solution other than this is also invited.

    Thanking you in advance.

  • avformat/matroskaenc : Remove duplicated code for writing WebVTT subs

    16 janvier 2022, par Andreas Rheinhardt
    avformat/matroskaenc : Remove duplicated code for writing WebVTT subs
    

    Up until now, the WebM variant of WebVTT subtitles has been handled
    specially : It had its own function to write it, because the data
    had to be reformatted before writing. But given that other codecs
    also need reformatting, this is no good reason to also duplicate the
    generic stuff for writing Block(Group)s.

    This commit therefore uses an ordinary reformatting function for
    this task ; writing WebVTT subtitles now uses the generic code
    and therefore automatically uses the least amount of bytes
    for its BlockGroup length fields whereas the earlier code used
    an overestimation for the length of the Duration element.
    This is the reason for the changes to the webm-webvtt-remux FATE-test.

    (This commit does not implement support for Matroska's way of muxing
    WebVTT ; it also does not add checks to ensure that WebM-style subtitles
    don't get muxed in Matroska. But the function for reformatting gets a
    webm prefix to indicate that this is for WebM.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/matroskaenc.c
    • [DH] tests/ref/fate/webm-webvtt-remux
  • FFMEG : run code after complete conversion

    26 octobre 2019, par Сергей Барахтенко

    There is a code that runs FFMPEG

    shell_exec($this->config->item('ffmpeg') . ' -i ' . $path . ' ' . $cmd . ' 1>' . $folder . '/log.txt 2>&amp;1 ');

    And there is the following line, which should, taking into account the peculiarities of the PHP language, work out immediately after shell_exec

    $params = array(
       'status' => 'ready'
    );
    $result = $this->model->editVideo($video_key, $params);

    This line simply updates the status of the video in the database

    My question is, why doesn’t the further php code work after completion shell_exec ? What could be the catch ?