Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (66)

  • 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

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

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

  • Applying audio to video background using ffmpeg_kit_flutter package not working in flutter

    2 décembre 2024, par MhmD Yo

    I am trying to merge video and audio and downloading the video in a flutter app using ffmpeg_kit_flutter package, it works fine with the videos that recorded by screen recorder app which records the screen of my phone, but it does not works with the videos that recorded by my phone camera or any video else and I do not know where the problem is.
Here's my code :

    


    Future<void> mergeRecordWithIntro({required String videoPath, required String audiPath, }) &#xA;async &#xA;  {&#xA; final random = Random();&#xA; final directory = await getTemporaryDirectory();&#xA;&#xA; String outputVideoPath = &#x27;${directory.path}/${random.nextInt(10000)}_merged_video.mp4&#x27;;&#xA; String ffmpegCommand = &#x27;-i $videoPath -i $audiPath -c:v copy -c:a aac $outputVideoPath&#x27;;&#xA;&#xA; await FFmpegKit.execute(ffmpegCommand)&#xA;    .then((value) async {&#xA;  await Gal.putVideo(outputVideoPath);&#xA;  emit(MergeVideoAudioSuccessState());&#xA;  }).catchError((error){&#xA;  emit(MergeVideoAudioFailureState());&#xA;  });&#xA;}&#xA;</void>

    &#xA;

  • How can I save local video file to django FileField ?

    11 janvier 2021, par Nina deRossi

    I create a local video file (.mp4) by adding a logo to an existing video with the following code :

    &#xA;

            logo_path = os.path.join(MEDIA_ROOT, &#x27;logo.png&#x27;)&#xA;&#xA;        logo = (mp.ImageClip(logo_path)&#xA;                .set_duration(video.duration)&#xA;                .resize(height=50)  # if you need to resize...&#xA;                .margin(right=8, top=8, opacity=0)  # (optional) logo-border padding&#xA;                .set_pos(("right", "top")))&#xA;&#xA;        video_path = os.path.join(MEDIA_ROOT, &#x27;test7.mp4&#x27;)&#xA;        audio_path = os.path.join(MEDIA_ROOT, &#x27;temp-audio.m4a&#x27;)&#xA;&#xA;        final = mp.CompositeVideoClip([video, logo])&#xA;        final.write_videofile(video_path, codec=&#x27;libx264&#x27;,&#xA;                              audio_codec=&#x27;aac&#x27;,&#xA;                              temp_audiofile=audio_path,&#xA;                              remove_temp=True&#xA;                              )&#xA;

    &#xA;

    I want to save the new video to a FileField of my model.&#xA;Here is the code :

    &#xA;

       f = open(video_path)&#xA;   flick.videoWithWatermark.save("videoWithWaterMark.mp4", File(f))&#xA;

    &#xA;

    I keep getting the error :&#xA;'ascii' codec can't decode byte 0xd1 in position 42 : ordinal not in range(128)

    &#xA;

    How can I save the video to a FileField ?

    &#xA;

  • Anomalie #2142 (Nouveau) : Balise #SET - espace ajouté lors de l’affectation d’une variable

    1er juillet 2011, par Severo Lipari

    Le code suivant : #SETtoto, a "#GETtoto" rend "a " J’imagine que ca serait mieux si ca rendait "a" sans espace final...