Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (12485)

  • src/libFLAC/stream_decoder.c : Fix NULL de-reference.

    17 décembre 2014, par Erik de Castro Lopo
    src/libFLAC/stream_decoder.c : Fix NULL de-reference.
    

    NULL de-reference can really only happen on a malformed file.
    Found using afl (http://lcamtuf.coredump.cx/afl/).

    • [DH] src/libFLAC/stream_decoder.c
  • How to convert raw H.264 stream from video call to mp4 file

    13 février 2020, par Daniel

    I have captured a SIP point to point video call using wireshark and I used the program ’videosnarf’ on Ubuntu 12.04 to extract the raw H.264 stream from the PCAP. I am having some problems with ffmpeg when trying to convert it to MP4. Below is the ffprobe output :

    [STREAM]
    index=0
    codec_name=h264
    codec_long_name=H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
    codec_type=video
    codec_time_base=1/2400000
    codec_tag_string=[0][0][0][0]
    codec_tag=0x0000
    width=704
    height=396
    has_b_frames=0
    sample_aspect_ratio=1:1
    display_aspect_ratio=16:9
    pix_fmt=yuv420p
    level=51
    r_frame_rate=25/1
    avg_frame_rate=25/1
    time_base=1/1200000
    start_time=N/A
    duration=N/A
    [/STREAM]

    Here is the command I used to generate the MP4 :

    ffmpeg -f h264 -i H264-media-3.264 -vcodec copy output.mp4

    When I transfer the file to my Windows PC, I can’t open the file in VLC. When opening in Windows Media Player (not sure the version but it’s on Windows 8) it plays but very quickly (almost as if it’s playing in fast forward. I also tried with :

    ffmpeg -f h264 -i H264-media-3.264 -vcodec copy -r 25 output.mp4

    I am able to play the raw H.264 stream using "MPC-HC" on Windows but I need it in MP4 format.

  • How to convert raw H.264 stream from video call to mp4 file

    30 mars 2015, par Daniel

    I have captured a SIP point to point video call using wireshark and I used the program ’videosnarf’ on Ubuntu 12.04 to extract the raw H.264 stream from the PCAP. I am having some problems with ffmpeg when trying to convert it to MP4. Below is the ffprobe output :

    [STREAM]
    index=0
    codec_name=h264
    codec_long_name=H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
    codec_type=video
    codec_time_base=1/2400000
    codec_tag_string=[0][0][0][0]
    codec_tag=0x0000
    width=704
    height=396
    has_b_frames=0
    sample_aspect_ratio=1:1
    display_aspect_ratio=16:9
    pix_fmt=yuv420p
    level=51
    r_frame_rate=25/1
    avg_frame_rate=25/1
    time_base=1/1200000
    start_time=N/A
    duration=N/A
    [/STREAM]

    Here is the command I used to generate the MP4 :

    ffmpeg -f h264 -i H264-media-3.264 -vcodec copy output.mp4

    When I transfer the file to my Windows PC, I can’t open the file in VLC. When opening in Windows Media Player (not sure the version but it’s on Windows 8) it plays but very quickly (almost as if it’s playing in fast forward. I also tried with :

    ffmpeg -f h264 -i H264-media-3.264 -vcodec copy -r 25 output.mp4

    I am able to play the raw H.264 stream using "MPC-HC" on Windows but I need it in MP4 format.