Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (91)

  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • 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

Sur d’autres sites (19916)

  • Python OpenCV real-time blurring with saving to output

    10 janvier 2024, par Oleg Novosad

    I have a live video stream via RTSP from my IP camera. I want to blur faces on that stream and output for mobile usage (HLS, H.264, etc). All this should ideally happen in real-time — with the minimum of resources consumed. I plan to deploy this later to some cloud, so the less money I spend on resources the better.

    


    Currently I have a working solution like so :

    


      

    • I capture video using OpenCV
    • 


    • I update every frame with Gaussian Blur and save it to some folder
    • 


    • After some amount of frames I create MP4 / AVI / whatever video and make it accessible via HTTP URL
    • 


    • All of it is running on Django for now
    • 


    


    I know I am doing something wrong, can someone suggest a better solution ?

    


  • FFMPEG video compression php

    6 juin 2014, par Ravindra Kumar Soam

    I have compressed a video in php with the code, given below :

    $sourceFile = $filename;
    $targetFile    = $filename;
    $resolution    = '640x480';

    $exec_string   = "ffmpeg -i ".$sourceFile." -r 30 -s ".$resolution." ".$targetFile;
    exec($exec_string);

    video is compressed with desired resolution, but this video is playing properly on mobile site version but for web application it is not playing.

    Showing only black screen with video time duration, is somebody there we can help to fixed the same ?????

  • FFmpeg/avconv rotate video with watermark adding using PHP-FFmpeg

    18 décembre 2015, par skrystos

    I’ve got problem with rotating video and adding watermark during the same request. My system can get video from mobile devices and has to reformat it for HTML5. so I’m making mp4,webm and ogv formats. Everything works fine, I’ve figured out how to get video rotation using Mediainfo. I have only one problem. When I want add watermark and rotation to video during the same request I’ve got only video with watermark (in proper resolution and format) but without rotation. I’ve read that it is possible to achieve using complex-filter. Has anyone expirience how to make it possible using PHP-ffmpeg ? It is very simple to use library, and works for me so it would be really cool if it will start to work.