Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (92)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (12308)

  • h264_parser : Initialize the h264dsp context in the parser as well

    5 août 2013, par Ben Avison
    h264_parser : Initialize the h264dsp context in the parser as well
    

    Each AVStream struct for an H.264 elementary stream actually has two
    copies of the H264DSPContext struct (and in fact all the other members
    of H264Context as well) :

    ((H264Context *) ((AVStream *)st)->codec->priv_data)->h264dsp
    ((H264Context *) ((AVStream *)st)->parser->priv_data)->h264dsp

    but only the first of these was actually being initialised. This
    prevented the addition of platform-specific implementations of
    parser-related functions.

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

    • [DBH] libavcodec/h264_parser.c
  • lavf : do not use the parser duration for video

    13 avril 2014, par Anton Khirnov
    lavf : do not use the parser duration for video
    

    The parser has no way of knowing video duration, and therefore no video
    parsers set it.

    • [DH] libavformat/utils.c
  • Combining mp4 with wav in python

    3 janvier 2021, par SaladHead

    I am trying to combine a .mp4 file with a .wav file. I am rendering my mp4 with cv2 videowriter, and I don't think it has anyway of incorporating audio with it. I have tried moviepy.editor, and ffmpeg. moviepy.editor kept messing up the video file and ffmpeg repeatedly kept giving me an error that it couldn't edit existing files in-place. Combining .mp4 with another audio file type is also fine, but if so it would be nice to also answer how to convert midi files to the file type you answered with. Thanks for the help !

    &#xA;

    moviepy.editor workflow :

    &#xA;

    video = mpe.VideoFileClip(mp4_path)&#xA;os.system(f"timidity {midi_path} -Ow -o {wav_path)}")  # Convert .mid to .wav&#xA;video = video.set_audio(mpe.AudioFileClip(wav_path))&#xA;video.write_videofile(mp4_path, fps=fps)&#xA;

    &#xA;

    ffmpeg workflow :

    &#xA;

    video = ffmpeg.input(mp4_path)&#xA;os.system(f"timidity {midi_path} -Ow -o {wav_path)}")  # Convert .mid to .wav&#xA;audio = ffmpeg.input(wav_path)&#xA;video = ffmpeg.output(video, audio, path, vcodec=&#x27;copy&#x27;, acodec=&#x27;aac&#x27;, strict=&#x27;experimental&#x27;)&#xA;ffmpeg.run(video)&#xA;

    &#xA;