Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (65)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

  • Why can't I set "aspect ratio" by ffmpeg -aspect ? [on hold]

    7 août 2014, par yasi

    I want to generate an h264 (avc) file by a jpg file. I generated it by command :

    • ffmpeg -f image2 -i img%d.jpg -vcodec libx264 sample.h264
    • mv avatar.h264 sample-320.avc

    the img%d.jpg is 0.jpg, 1.jpg, 2.jpg ... 24.jpg, all of which is the same, resolution is 320x180

    When sample.avc is generated, I checked information of it by ESEyE, it’s like below.
    enter image description here

    As you can see, the resolution is correct, but aspect ratio is weird since original jpg sequence is 320x180, whose aspect ratio is 16:9. So, I tried to keep 16:9 by the command below

    • ffmpeg -r 25 -f image2 -i img%d.jpg -vcodec libx264 -profile:v baseline -level:v 1.1 -aspect "16:9" sample.h264

    However, it doesn’t work, the generated avc aspect ratio is still 5x3.

    How can I keep aspect ratio of 16:9 ?

    P.S.
    I guess h264 miminal block is 16x16, and avc width could be padded as 192 (16 * 12), so aspect ratio is 320:192 = 5:3.

  • Cannot play DAV to MP4 converted H.265 video file with hvc1 tag in iPhone

    21 août 2023, par Venkata Subbarao

    I have converted H.265 video file in dav format from Dahua camera using following commands. Both of the generated mp4 video files are NOT playable in iPhone default player. However, the generated video files are playable in VLC player.

    


    ffmpeg -y -i hevc.dav -c:v copy -tag:v hvc1 hevc.mp4
ffmpeg -y -i hevc.dav -tag:v hvc1 -c:v copy -f mp4 -movflags frag_keyframe+empty_moov hevc.mp4


    


    Generated video file plays only if I re-encode the video using following command.

    


    ffmpeg -y -i hevc.dav -c:v libx265 -tag:v hvc1 hevc.mp4


    


    Re-encoding is time consuming. So, please let me know, if I am missing any flags in the above commands.

    


  • appx cannot call exe file

    22 avril 2022, par MrL

    enter image description here

    


    I have developed an application with electron and intend to upload it to the windows app store. This software needs ffmpeg Exe, which can be used normally during the test, but I can't call ffmpeg after I package it into appx and install it Exe, I guess Microsoft may not allow developers to call exe files, but I'm not particularly sure. Is there any other way to call ffmpeg ?