Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (59)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

Sur d’autres sites (6379)

  • How to do reprocessing H264 data to image/video

    3 octobre 2017, par somethingunexpected

    I have been working on a project which blows my mind.

    First of all, I have an IP camera that streams H264 data. I am able to stream it with its RTSP url via VLC/ffmpeg/python (rtsp ://ip:port/PSIA/Streaming/channels/2 ?videoCodecType=H.264). So, there is nothing to worry about streaming.

    However, on the project, camera is connected to the another system. This system gives the H264 data via ethernet to my PC, so camera is not connected directly to the PC.
    The system gives the data in every 10 ms at 1000 bytes. For example, if incoming data is 800 bytes, it adds 200 null bytes.

    What I can do is to extract these null bytes and take the raw data via a socket. For latency, I use thread module so there is no data leakage.

    What I gotta do is to turn these raw H264 data to an image sequence or a video that can be displayed via VLC, ffmpeg, Classic Media Player etc.

    I preferrebly want to write my code in Python and every operation has to be in real-time. So, any help would be appreciated.

  • how to convert RTPDUMP video file to mp4

    11 novembre 2020, par Asain Kujovic

    Viber recently got "instant video message" option, called also "video push-to-talk" (vptt).

    



    Inside viber data in directory ".vptt" there are files with vptt extension. Envelope format is classic ZIP file, when extracted gives jpg-thumbnail and 'video' file.

    



    Video file says "# !rtpplay1.0" inside first line, so it should be format of rtp-tools, used by wireshark too, and somehow related to actual WebRTC trends...

    



    So if video content inside this rtpdump file is not encrypted ( ? ), "how to save viber instant message push to talk video" boils down to just : "how to convert rtpdump video to mp4".

    



    rtpplay can send it to some port, but ffmpeg/ffplay/vlc needs correct sdp file.

    



    does someone knows something further about this ?

    


  • Saving stream video on event FFMPEG CCTV RTSP ://

    25 avril 2017, par Josh

    I have a problem that I’m hoping some of the great minds here could help me with.

    I have a CCTV system that provides 4 RTSP streams (one from each camera) that will be covering a short 60 second event (roughly, so I can’t predefine a duration). The issue I have is I need FFMPEG to take clips from the stream triggered from a JSON feed. There are two commands or states, Door Open - Stop Recording and Door Closed - Begin Recording.

    Now getting FFMPEG to start recording on the door close is pretty simple in batch as I’m currently experimenting HOWEVER I can’t seem to find a way to get FFMPEG to start recording and then stop recording on demand. In batch it’s pretty straight forward using Ctrl+C to have FFMPEG commit the recording to file. The question is, how do I get FFMPEG PHP to send a command to an already closed handle to stop the recording and commit to file ?

    Many Thanks,
    Josh