Recherche avancée

Médias (91)

Autres articles (67)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (10353)

  • opencv vs live555 vs ffmpeg for decoding rtsp stream with added metadata ?

    17 août 2021, par Peter Parker

    From an IP camera I must decode a h.264 encoded rtsp transport stream containing a program clock reference (PCR), transmitted in the adaptation field of the TS packet. I am using a Windows machine.

    


    This PCR field is transmitted at least every 100ms.

    


    I need to extract this timestamp data for each frame of the video.

    


    I would also like to use OpenCV to process each frame, whilst acknowledging the current time, based on the PCR field value.

    


    OpenCV is not capable of decoding the live rtsp url AND it discard the ancillary data I need.

    


    Do I need to use live555 along with ffmpeg to decode the stream ? Or is it possible to extract this data using ffmpeg and opencv libraries alone ?

    


    Suppose I embed a SMPTE/MISB compliant Microsecond Timestamp (KLV metadata packet) in the VANC space after achieving this.

    


    Will the same strategy work ?

    


    Thanks in advance for any pointers.

    


  • FFMPEG Drag and Drop sh file

    29 avril 2021, par WFCDefi

    On Windows I have a simple batch file which I drop video files onto to convert to webms, it saves a lot of time as I prefer to just use the same configuration and don't care much about the names.

    


    @echo off 
echo. 
ffmpeg -i %1 -c:v libvpx-vp9 -quality good -cpu-used 2 -b:v 5000k -qmin 15 -qmax 45 -maxrate 500k -bufsize 1500k -framerate 60 -threads 8 -vf scale=-1:1080 -c:a libvorbis -b:a 192k -f webm %1.webm 
pause


    


    I know the .bat file won't really work in Linux (I'm on pop os so pretty much Ubuntu) so with the other lines removed and the %1 changed to $1 it works. It won't do anything if I try dragging and dropping a video file onto it though.

    


    I can type sudo then drag and drop the .sh file followed by a video into a terminal and press enter and it will have the same effect as dragging a video file onto a bat file in Windows.

    


    Is there a way to recreate dragging and dropping a file directly onto another and it executing in Linux or is the terminal the only way ?

    


  • retriving video details with ffprobe in php

    15 juillet 2014, par Roohbakhsh Masoud

    i’m using this command for retrieve video information in ubuntu terminal :

    ffprobe -show_streams sample.mp4

    this command show all information about video in terminal, but when i use this command in php and use exec function to retrieve result , return

    string(0) ""
    {}

    how i can retrieve result in php ?

    my code :

       public function information($ffmpeg,$file)
       {
         $info = exec("$ffmpeg -show_streams $file");
         return $info;
       }