Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (50)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8846)

  • movenc : Change the track struct name to match the typedef

    2 juin 2013, par Martin Storsjö
    movenc : Change the track struct name to match the typedef
    

    This makes the struct name (which isn’t used anywhere) match the
    name of the typedef, as for all the other structs declared in this
    header.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc.h
  • Why Video and Audio Don't Match ?

    19 août 2021, par Ohpy

    there is an ffmpeg code.

    &#xA;

    fmpeg -i "1.mp4" -vf "zoompan=z=&#x27;if(lte(mod(time,4.99),2.03),4,0)&#x27;:d=1:x=iw/2-(iw/zoom/2):y=ih/2-(ih/zoom/2):fps=23.98" -af "firequalizer=gain_entry=&#x27;entry(0,-23);entry(250,-1100.5);entry(1000,0);entry(4000,1);entry(16000,16)&#x27;" -metadata title="" -metadata artist="" -metadata album_artist="" -metadata album="" -metadata date="" -metadata track="" -metadata genre="" -metadata publisher="" -metadata encoded_by="" -metadata copyright="" -metadata composer="" -metadata performer="" -metadata TIT1="" -metadata TIT3="" -metadata disc="" -metadata TKEY="" -metadata TBPM="" -metadata language="eng" -metadata encoder="" -threads 0 -preset superfast 1OUT.mp4&#xA;

    &#xA;

    This code zooms in and out of the image in the video. It also changes the sound frequency.

    &#xA;

    When the process of the video is finished, the image in the video and the sound do not match.

    &#xA;

    For example, the sound that should be at the 10th second of the video is at the 15th second. How can I prevent this ?

    &#xA;

    Can you help me ?

    &#xA;

  • how to mux h.264 into flv

    2 mars 2016, par jrlj

    i have h.264 raw data now, the stream will be

    (00 00 00 01 AUD 00 00 00 01 SPS 00 00 00 01 PPS 00 00 00 01 SEI 00 00 00 01 IDR) (00 00 00 00 01 AUD 00 00 00 01 SEI 00 00 00 01 non-IDR) (00 00 00 00 01 AUD 00 00 00 01 SEI 00 00 00 01 non-IDR)......

    I will use ffmpeg to mux h.264 stream into flv container. I am writing SPS and PPS into AVCodecContext.extradata and I skip AUD、SPS、PPS、SEI, just writing [00 00 00 01 IDR] and [00 00 00 01 non-IDR] into AVPacket.data. The outout.flv can playing with "VLC player"(VLC player has higher tolerance), but can’t playing with "FLV Player". I have no idea what’s wrong with my output.