Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (74)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

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

Sur d’autres sites (6515)

  • Android how to record my mobile screen in android with out using USB cable ?

    21 juin 2012, par Rajesh

    I am wondering to do the android application which should record my screen activities and should store as the video file .

    1) i need to take the screen shots of my screen movements with the periodic interval and should store in sdcard.

    2) how to create the video from the images which is already available in my sdcard. I have tried with the FFMPEG. but i have few problems dont know how to solve it .. the truth is dont know the program to convert it .

    3 ) is it possible to show the picture in my camera ?? That means if user opens the camera from my app some times i should show the pictures which available in my sdcard .. if its so please advice me .

    Thanks ,
    Rajesh .

  • FFMPEG timelapse with alternate time scale

    24 juin 2022, par Bill V

    My home video system takes a snapshot every 15 seconds. At midnight I run a script that uses ffmpeg to create a time lapse video at 8 frames/second. Playing the resulting time lapse video takes 12 minutes. When I play it back, the time line show the time as 0-12:00. I'd like it to show the time of the snapshots - 0-23:59:45. Can that be done and if so how ? Below is the ffmpeg command I use. Prior to running ffmpeg, the images are in files ordered 1.jpg to 5760.jpg. Thanks

    


    ffmpeg -r 8 -s 1920x1080 -i %%d.jpg -vcodec mpeg4 -crf 25 -pix_fmt yuv420p temp.mp4


    


  • DirectShow RTSP SourceFilter with MPEG-4 Video Stream

    20 mars 2021, par Novalis

    I create a simple direct show source filter using FFmpeg.I read rtp packets from RTSP source and give them to decoder. It works for h264 stream.

    



    MyRtspSourceFilter[H264 Stream] ---> h264 Decoder --> Video Renderer


    



    The bad news is that it does not work for MPEG-4. I can able to connect my rtsp source filter with MPEG-Decoder. I got no exception but video renderer does not show anything. Actually just show one frame then nothing [just stop]... Decoders and Renderers are 3rd party so i can not debug them.

    



    MyRtspSourceFilter[MP4 Stream] ---> MPEG-4 Decoder --> Video Renderer


    



    I can able to get rtp packets from MPEG-4 RTSP Source using FFmpeg sucessfully.There is no problem with it.

    



    


    It seems that i have not set something(?) in my Rtsps Source
 Filter which is not necessary for H264 stream but may be important for
 MPEG-4 stream

    


    



    What may cause this h264 stream and MPEG-4 stream difference in a direct show rtsp source filter ? Any ideas.

    



    More Info :

    



    — First i try some other rtsp source filters for MPEG-4 Stream...Although my rtsp source is same i see different subtypes in their pin connections.

    



    — Secondly i realy get suspicious if the source is really MPEG-4 SO i check with FFmpeg...FFmpeg gives the source codec id as "CODEC_ID_MPEG4".

    



    Update : 
[ Hack ]

    



    I just set m_bmpInfo.biCompression = DWORD('xvid') it just worked fine...But it is static. How to dynamically get/determine this value using ffmpeg or other ways...