Recherche avancée

Médias (91)

Autres articles (76)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11613)

  • 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>&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 ?

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