Recherche avancée

Médias (91)

Autres articles (99)

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

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

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

  • aac : Relax reserved_bit validation

    3 mars 2015, par Vittorio Giovara
    aac : Relax reserved_bit validation
    

    Although the specification mandates this bit to zero, it may happen
    that software tools incorrectly flip it to one, invalidating a possibly
    valid stream.

    Relax this restriction, by failing only when AV_EF_BITSTREAM is set.
    This behaviour is similar to aac decoders in Firefox and Quicktime.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavcodec/aacdec.c
  • hevc_refs : drop the handling of negative coordinates in ff_hevc_get_ref_list()

    27 juillet 2014, par Anton Khirnov
    hevc_refs : drop the handling of negative coordinates in ff_hevc_get_ref_list()
    

    It makes no sense and cannot happen in any place from which this
    function is called.

    • [DH] libavcodec/hevc_refs.c