Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (57)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • af_hdcd : disable auto-convert by default

    5 octobre 2016, par Burt P
    af_hdcd : disable auto-convert by default
    

    As all known valid HDCD sample formats and sample rates are now handled
    by the filter, remove the scan that "invades the privacy" of the filter graph
    and turn off autoconvert by default as requested by Nicolas George.

    http://ffmpeg.org/pipermail/ffmpeg-devel/2016-August/197571.html

    Signed-off-by : Burt P <pburt0@gmail.com>

    • [DH] libavfilter/af_hdcd.c
  • Same command but different result, odd behavior between cmd and python subprocess

    22 juin 2020, par Josh Katz

    Hello and thanks everyone, I am having a very strange phenomenon and I hope you can help me solve it, I run a command through the cmd to save video coming from a camera to a local file in my computer,the command is :

    &#xA;

    ffmpeg -rtsp_transport tcp -i "rtsp ://root:senswim2018@10.0.0.101/axis-media/media.amp" -c copy foo.mp4

    &#xA;

    when I run the command through the cmd it works fine (recorded a video longer than 12 hours), but when I run it as a command "Using the subprocess in Python, it only records around 5:30 minutes

    &#xA;

    cmd = ["ffmpeg","-rtsp_transport","tcp", "-i", "rtsp ://root:senswim2018@10.0.0.101/axis-media/media.amp" ,"-c", "copy","foo.mp4"]

    &#xA;

    process = subprocess.Popen(cmd , stdout=subprocess.PIPE, stderr=subprocess.STDOUT)

    &#xA;

    time.sleep(600000)

    &#xA;

    process.terminate()

    &#xA;

    This matter is very confusing and unclear to me, I would be very happy if you could give some insight thanks.

    &#xA;

  • .h264 c# player with google map [closed]

    11 octobre 2014, par pkvasan

    want to create media player to play .h264 file in c# along with Google map.

    My mobile hardware unit records cctv image in .h264 format the footage also contains GPS data like Location and speed for each frame

    I want to design a media player in C# to play the cctv footage which is in .h264 format and also I want to read the GPS data from each frame and embed in Google map to show the location

    I wanted following help
    1) how to play .h264 file in C#
    2) want to read metadata from .h264 file (GPS data)
    3) want to embed google map in C# and display location as per the metadata from .h264 file