Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (40)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6109)

  • concatdec : fix file_start_time calculation regression

    13 octobre 2015, par Marton Balint
    concatdec : fix file_start_time calculation regression
    

    Fixes ticket #4924.

    Found-by : Jaroslav Šnajdr <jsnajdr@gmail.com>
    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/concatdec.c
  • concatdec : fix metadata memleak on error

    3 octobre 2015, par Marton Balint
    concatdec : fix metadata memleak on error
    

    Fixes Coverity CID 1323077.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/concatdec.c
  • My FFMPEG Scripts exits before reading every line in my CSV file [duplicate]

    13 février 2021, par D0n

    I am new to bash scripting. But I have a script that records a RTSP URL's and saves a mp4 file with the name I specified in the first column. The script could record 20 mp4 files then stop after encountering multiple bad streams in the CSV file.

    &#xA;

    Is there a way that I can make the script read all of the contents in the CSV and attempt to record before failing ?

    &#xA;

    I often have to re-run the script and it records video that it did not record previously.

    &#xA;

    Here is my Script

    &#xA;

    #!/bin/bash&#xA;while IFS=, read -r col1 col2&#xA;do&#xA;   ffmpeg -stimeout 99999999 -rtsp_transport tcp -t 30 -i "$col2" "$col1".mp4&#xA;done &lt; streamslist.csv&#xA;

    &#xA;

    I have 200 lines but here is an example of whats in my CSV file.

    &#xA;

    &#xA;

    stream77,rtsp ://X.X.X.X:554/Streaming/Channels/1

    &#xA;

    &#xA;