Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (47)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

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

  • ffmpeg command leads to audio stream lost in conversion

    3 janvier 2023, par Sebastien Boulnois

    I have been exploring at a high level the concept of 360 videos for VR purposes and have been searching how to compress them in a way that my Oculus Quest 2 likes.

    


    I have been advised to use ffmpeg to do these kind of conversion. My initial file is a .mov file that I exported using ProRes422. My desired output is a compressed, optimized mp4 file for Oculus purposes.

    


    Here is the command line I used (simple copy paste from a person who was doing what I wanted to achieve) :

    


    ffmpeg -i input.mov -c:v libx264 -preset slow -crf 18 -maxrate 100M -bufsize 200M -pix_fmt yuv420p -an -movflags faststart output.mp4

    


    The compression works, the video quality is amazing. However, I lose the audio stream, which I really need.

    


    Here is the version of ffmpeg I currently have on my Mac :
ffmpeg current version on my mac

    


    Do you people know how to fix this issue ?

    


    I am just not sure how to proceed from here. I did not try anything specific.

    


  • ffmpeg is reducing video duration while compressing

    26 avril 2018, par Alays

    I am using this command line to compress my_video.mp4 (duration 5s) and overwrite the initial file.

    ffmpeg -y -i my_video.mp4 -vcodec h264 -acodec mp2 my_video.mp4

    If I run this command with a video of 5s it is reducing my_video.mp4 to 1s

    What is wrong here ? I just want my output file to be the initial file.

    If I run

    ffmpeg -y -i my_video.mp4 -vcodec h264 -acodec mp2 my_video2.mp4

    my_video2.mp4 is compressed and have a duration of 5s and my_video.mp4 have a duration of 1s

    I don’t understand

  • 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 ?