Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (48)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (3503)

  • How to add audio of both the video when overlaying one video over the other in FFmpeg ?

    22 juillet 2022, par Sanyem Nazkani

    I want to overlay V1 video over D2 video and want to use the audio of both V1 and D2. Can someone please help me in this ?

    


    ffmpeg -i D ://python/E1.mp4 -i D ://python/V1.mp4 -filter_complex "[1]setpts=PTS-STARTPTS+10/TB[top] ;[0:0][top]overlay=275:300:enable='between(t,18.20,27.10)'[out]" -shortest -map [out] -map 0:1 -pix_fmt yuv420p -c:a copy -c:v libx264 -crf 18 D ://python/Output.mp4

    


  • How to get video size of compressed video by ffmpeg ?

    28 septembre 2017, par Mani Kandan

    Hi we are using ffmpeg for compressing the video through php script, now what i need is i want to get the video size of compressed image, but am getting an video path so kindly guide me how i need to over come this ?

    Below is the code what i used for compressing the video

    original path

    $path = "sample.mp4";

    Command to compress

    exec("ffmpeg -i sample.mp4 -vcodec h264 -acodec aac -strict -2 compressed_video.mp4);

    The command what i used for getting video size

    $compressed_video_information = exec("ls -h1 compressed_video.mp4);
    echo $compressed_video_information;

    I get just file path instaed of getting video file size, so someone help me how to overcome this issue ?

  • How to get video size of compressed video by ffmpeg ?

    14 juillet 2016, par Mani Kandan

    Hi we are using ffmpeg for compressing the video through php script, now what i need is i want to get the video size of compressed image, but am getting an video path so kindly guide me how i need to over come this ?

    Below is the code what i used for compressing the video

    original path

    $path = "sample.mp4";

    Command to compress

    exec("ffmpeg -i sample.mp4 -vcodec h264 -acodec aac -strict -2 compressed_video.mp4);

    The command what i used for getting video size

    $compressed_video_information = exec("ls -h1 compressed_video.mp4);
    echo $compressed_video_information;

    I get just file path instaed of getting video file size, so someone help me how to overcome this issue ?