Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (89)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • 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

  • centos FFmpeg when I am using exec_static it shows only 1 minute live stream

    7 janvier 2020, par DAVIT TSILOSANI

    Hello I am using Centos 7 Ngnix RTMP module
    and I am using FFmpeg also

    When I am streaming using console

    Using that command

    ffmpeg -re -i http://website......./index.m3u8 -vcodec libx264
    -vprofile baseline -g 30 -acodec aac -strict -2 -f flv rtmp ://localhost/show/stream5

    Everything is fine,
    stream is broadcasting live

    but when I put it into Ngnix

    such as

    exec_static ffmpeg -re -i website......./index.m3u8 -vcodec libx264
    -vprofile baseline -g 30 -acodec aac -strict -2 -f flv rtmp ://localhost/show/stream5

    It only shows 1 minute live stream after reloading, it starts over and over and over

    Can u tell me what can I do to solve it ?

  • A light-weight Rust crate for encoding videos from images and audios [closed]

    24 décembre 2019, par Agus Putra Dana

    I want to make a web app that enable users to generate video from canvas animation. I’m aware that I can record the canvas animation and the audios using catureStream(), but I want to generate the video without playing the audio. Also, the video frame rate generated using this method is not consistent.

    My idea is to capture the canvas frame by frame and store them as blob to get a consistent frame rate. And then encode the video from these blobs and some audio files uploaded by the user using web assembly. I’m also aware that I can use FFMPEG to encode the video. But the file size of the compiled FFMPEG is quite big.

    Is there any light-weight video encoder library, preferably written in Rust, just for encoding video from images and audios ?