Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (66)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

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

  • FFMPEG : Concatenating two videos and adding audio only to the second video

    29 septembre 2023, par Huzefa Tahir

    I have two videos v1 and v2 which I want to concat. I also want to add audio a2 to the second video. v1 may or may not have an audio. How can I do that in one ffmpeg script ?
This is how the output should be like :
| V1 | V2 |
| a1 ? | a2 |

    


    I am having trouble placing the audio a2 at the start of the v2. I can't seem to find a filter that does this and -map doesn't seem to work with this either as it places a2 at start of v1.

    


  • FFmpeg not splitting videos precisely

    23 novembre 2022, par SRK7Kyros

    I was trying to use FFmpeg to split videos into 30s segments, here is the full code :

    


    from tkinter import filedialog, Tk
import subprocess
import os
Tk().withdraw()
path_to_video = filedialog.askopenfilename()

segment_duration = input("Enter each segment duration in second: ")

os.chdir(os.path.dirname(__file__))
subprocess.run([
    "E:\\Programs\\FFmpeg\\ffmpeg-master-latest-win64-gpl\\bin\\ffmpeg.exe", 
    "-i", path_to_video, 
    "-c:", "copy", 
    "-map", "0", 
    "-segment_time", segment_duration, 
    "-f", "segment", 
    "-reset_timestamps", "1",
    "Output_%03d.mp4"])


    


    But it actually splits it into videos with really low precision, how can I fix it ? Another post regarding this topic suggested adding this line :

    


    "-force_key_frames", f"expr:gte(t,n_forced*{segment_duration})",


    


    But it didn't really work...

    


  • How to concatenate videos and adding background audio by using FFMPEG library

    9 mars 2017, par Furqan

    I am very new to FFMPEG library and i want some directions to implement a program that receives an list of videos (mp4 format) and audio file (mp3 ) and concatenate them with timestamps and remove its audio and add given audio and output a final video.

    Thanks