Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (9398)

  • How to publish or push the live stream to RTMP-Nginx server using php and FFmpeg ?

    27 juin 2020, par vijendar

    I want to push the live stream to the RTMP-Nginx server. I am recording the webcam and sending it to the PHP running server using the socket but couldn't find the proper way to push the stream on the RTMP-Nginx server. I am appending the stream after receiving through the socket. I have used this

    


    ffmpeg -re -i uploads/test.webm -vcodec libx264 -preset fast -maxrate 1500k -c:a aac -b:a 128k -ac 2 -ar 44100 -f flv rtmp://x.xx.xxx.xx/live/xxx

    


    to push on the RTMP-Nginx server. But it's executing on the very first received packet of the video stream and then terminated. I know It's not working with a continuous appended video stream. may be FFmpeg reading as a whole. Hoping for the right direction. Thanks in advance.

    


  • stream live 360 video on any android device

    10 juin 2018, par Vivek Kashid

    How do I stream live 360 video on any android device.I used ffmpeg for RTP and mpeg2video for video codec.The applications used for android device and Moverio are VLC player and MX player.

  • How to extract Geolocation metadata from an Apple Live Photo ?

    18 mars 2020, par P'P'

    I’m trying to organize my photo collection and convert .mov files to .jpeg files while retaining all of the meta data that has been stored. I’m running into a problem with Apple’s "Live Photos" though...

    I recently downloaded all of the photos from my iCloud account and found that many have been stored as .mov files as "Live Photos". As I only want to include photos in this collection, I’d like to convert all of these .mov files to .jpg files.

    So... I’m trying to use python and shell commands to do this. Here’s an extract of my code :

    # Convert the .mov file into a series of jpegs using ffmpeg
    os.system(f'ffmpeg -i {movie} -r {numFrames} -map_metadata 0 -movflags use_metadata_tags {imageRoot}_%0004d.jpg')

    # ... some code to find the best slice of the movie to keep as an image ...

    # Add any meta tags that may have been missed
    os.system(f'exiftool -tagsFromFile {movie} {image}"

    Unfortunately, the Geolocation metadata isn’t being copied from the .mov file to the .jpg files. exiftool movie.mov doesn’t list any GPS or Geolocation tags either, but I know that this data is included somewhere within the file as Apple is able to map the location that the 2 second video was taken. Any thoughts as to how I can extract this meta data from Apple’s Live Photo .mov clips ?

    Thanks in advance.

    PP