Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (33)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (4065)

  • Extract different camera frames (multiplex)

    22 août 2016, par Mike Issa

    I have a sequential multiplexed video with 3 cameras. These videos are being converted from VHS to DVD (.VOB format). I am using ffmpeg to extract all frames in .JPG format.

    I want to write a python script that scans for a certain object in the frame (like a constant/static object in the background) and organizes all the frames containing that object into a folder. This is the only way I can think of to separate the camera views, because as the video progresses, one of the cameras turns off for a few minutes and then turns back on, ruining the interval of 3-frames-per-camera-view sequence*.

    • I tried writing a python script that extracts every third frame (starting from the first frame for camera 1, second frame for camera 2, third frame for camera 3) into separate folders, but this did not bode well when I found out that one of the cameras switches off and then back on.

    I tried a "detection patch" method using VirtualDub found in this forum, but it didn’t work for me (not sure why).

    Should I be using numpy or openCV to find a certain block of pixels in each frame to do the organizing of camera views, or is there a simpler way ?

  • Révision 93500 : Annuler le commit précédent sur les espaces insécables.

    9 décembre 2015, par pierre.fiches@gmail.com

    C’est probablement sur la chaine de langue qu’il faut intervenir.
    Elle est dans ecrire_fr.php, ne faudrait-il pas la déplacer dans le plugin forum
    texte_statut_publies
    texte_statut_attente_validation
     ?

  • How to capture mpeg ts streaming via udp in Golang ?

    9 octobre 2019, par Lucas

    I have some live stream shared via some udp adress with specified port. I would like to capture this and save to my filesystem.

    It says :
    mpegts, from ’udp ://xx.x.x.x:xx’ and then some metadata (x are for safety reason, in original these are numbers ofcourse).

    With that being said, is there any Go package capable to simple capture this stream ? If no, can someone provide FFMPEG command to do that ?

    I need to say I am completly new to the streaming subject.

    What I found is :

    Golang package (but not idea how to configure it) :
    https://godoc.org/github.com/asticode/go-astits#Demuxer

    This thread, but given ffmpeg command seems to not work properly (it starts, gives some output [I can provide it] and hangs doing nothing) :
    https://ffmpeg.zeranoe.com/forum/viewtopic.php?t=5175&fbclid=IwAR0Sxshm1rDPyaCgvAig5D6pnAEPl0mNzxf3rFDgZk6pEg4nJr1ChBaxNHs

    Disclaimer : Had to use ’mpeg2-ts’ in tags, beacuase there is no ’mpeg-ts’. Not sure if I am messing something....