Recherche avancée

Médias (0)

Mot : - Tags -/xml-rpc

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

Autres articles (34)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6911)

  • codec_desc : fix typo in rv20 long_name.

    9 juillet 2013, par Alexis Ballier
    codec_desc : fix typo in rv20 long_name.
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/codec_desc.c
  • Python code mutes whole video instead of sliding a song. What shall I do ?

    16 juillet 2023, par Armed Nun

    I am trying to separate a song into 4 parts and slide the parts in random parts of a video. The problem with my code is that the final output video is muted. I want to play parts of the song at random intervals and while the song is playing the original video shall be muted. Thanks to everyone who helps

    &#xA;

    import random&#xA;from moviepy.editor import *&#xA;&#xA;def split_audio_into_parts(mp3_path, num_parts):&#xA;    audio = AudioFileClip(mp3_path)&#xA;    duration = audio.duration&#xA;    part_duration = duration / num_parts&#xA;&#xA;    parts = []&#xA;    for i in range(num_parts):&#xA;        start_time = i * part_duration&#xA;        end_time = start_time &#x2B; part_duration if i &lt; num_parts - 1 else duration&#xA;        part = audio.subclip(start_time, end_time)&#xA;        parts.append(part)&#xA;&#xA;    return parts&#xA;&#xA;def split_video_into_segments(video_path, num_segments):&#xA;    video = VideoFileClip(video_path)&#xA;    duration = video.duration&#xA;    segment_duration = duration / num_segments&#xA;&#xA;    segments = []&#xA;    for i in range(num_segments):&#xA;        start_time = i * segment_duration&#xA;        end_time = start_time &#x2B; segment_duration if i &lt; num_segments - 1 else duration&#xA;        segment = video.subclip(start_time, end_time)&#xA;        segments.append(segment)&#xA;&#xA;    return segments&#xA;&#xA;def insert_audio_into_segments(segments, audio_parts):&#xA;    modified_segments = []&#xA;    for segment, audio_part in zip(segments, audio_parts):&#xA;        audio_part = audio_part.volumex(0)  # Mute the audio part&#xA;        modified_segment = segment.set_audio(audio_part)&#xA;        modified_segments.append(modified_segment)&#xA;&#xA;    return modified_segments&#xA;&#xA;def combine_segments(segments):&#xA;    final_video = concatenate_videoclips(segments)&#xA;    return final_video&#xA;&#xA;# Example usage&#xA;mp3_file_path = "C:/Users/Kris/PycharmProjects/videoeditingscript124234/DENKATA - Podvodnica Demo (1).mp3"&#xA;video_file_path = "C:/Users/Kris/PycharmProjects/videoeditingscript124234/family.guy.s21e13.1080p.web.h264-cakes[eztv.re].mkv"&#xA;num_parts = 4&#xA;&#xA;audio_parts = split_audio_into_parts(mp3_file_path, num_parts)&#xA;segments = split_video_into_segments(video_file_path, num_parts)&#xA;segments = insert_audio_into_segments(segments, audio_parts)&#xA;final_video = combine_segments(segments)&#xA;final_video.write_videofile("output.mp4", codec="libx264", audio_codec="aac")&#xA;

    &#xA;

    I tried entering most stuff into chatGPT and asking questions around forums but without sucess, so lets hope I can see my solution here

    &#xA;

  • FFMPEG audio streaming to icecast lets media players stop after each song

    21 décembre 2020, par ILoveCake

    I have set up FFMPEG audio streaming to an icecast2 server.&#xA;It works, but when I use a loop to stream different songs, media players stop after each song. In detail :

    &#xA;

    for i in 1 2 3&#xA;do&#xA;  ffmpeg -loglevel quiet -hide_banner -re -i test$i.mp3 \&#xA;  -c:a libvorbis -ac 1 -b:a 96K -content_type audio/webm -f webm \&#xA;  icecast://source:password@localhost:8000/stream&#xA;done&#xA;

    &#xA;

    Media players (vlc, mpv, mplayer) would stop after each of the 3 test files. I have to press play again and again. For icecast2 I use the default settings (queue-size 524288, burst-size 65535).

    &#xA;

    How can I have a continuous flow so players don't have to be restarted ?

    &#xA;