Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (102)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (4781)

  • FFmpeg opening key info file - could not write header for output file

    13 mars 2021, par Hoang Nam

    I want muxer mp4 to m3u8 with key.
I can do this when I put all files in same directory.

    


      

    • File 480.mp4.key
    • 


    • File video 480.mp4
    • 


    • File hls info have name : "480.mp4.keyinfo"
    • 


    


    When I run the command ffmpeg -i 480.mp4 -hls_time 10 -hls_key_info_file 480.mp4.keyinfo output.mp4.m3u8
everything runs normally.

    


    However, I meet a problem when I move file "480.mp4.key" and file "480.mp4.keyinfo" into another directory such as /usr/local/WowzaStreamingEngine/keys/auto_scan/testhh/2/123/480.mp4.keyinfo
I also change key directory in file keyinfo

    


    After that I run

    


    ffmpeg -i 480.mp4 -hls_time 10 -hls_key_info_file 480.mp4.keyinfo output.mp4.m3u8 ffmpeg -i output/testhh/2/123/480.mp4 -hls_time 10 -hls_key_info_file /usr/local/WowzaStreamingEngine/keys/auto_scan/testhh/2/123/480.mp4.keyinfo output/testhh/2/123/480.mp4.m3u8


    


    But I get an error :

    


     error opening key info file /usr/local/WowzaStreamingEngine/keys/auto_scan//testhh/2/123/output/testhh/2/123/480.mp4.keyinfo
Could not write header for output file #0 (incorrect codec parameters ?): No such file or directory
Error initializing output stream 0:0 -- 


    


  • FFMPEG - error opening key info file

    12 mars 2021, par Hoang Nam

    I want muxer mp4 to m3u8 with key
I can do this when i put all file in same directory

    



      

    • File 480.mp4.key
    • 


    • File video 480.mp4
    • 


    • File hls info have name :"480.mp4.keyinfo"
    • 


    



    When i run commnand : ffmpeg -i 480.mp4 -hls_time 10 -hls_key_info_file 480.mp4.keyinfo output.mp4.m3u8
everything run normal.

    



    but i meet problem when i move file "480.mp4.key" and file "480.mp4.keyinfo" into other directory such as : /usr/local/WowzaStreamingEngine/keys/auto_scan/testhh/2/123/480.mp4.keyinfo
I also change key directory in file keyinfo

    



    After that i run

    



    ffmpeg -i 480.mp4 -hls_time 10 -hls_key_info_file 480.mp4.keyinfo output.mp4.m3u8 ffmpeg -i output/testhh/2/123/480.mp4 -hls_time 10 -hls_key_info_file /usr/local/WowzaStreamingEngine/keys/auto_scan/testhh/2/123/480.mp4.keyinfo output/testhh/2/123/480.mp4.m3u8


    



    Error :

    



     error opening key info file /usr/local/WowzaStreamingEngine/keys/auto_scan//testhh/2/123/output/testhh/2/123/480.mp4.keyinfo
Could not write header for output file #0 (incorrect codec parameters ?): No such file or directory
Error initializing output stream 0:0 -- 


    



    Please help me solve problem. Tks !

    


  • ffmpeg to print encryption info of a AVPacket in a video stream

    14 février 2021, par Keogh Mathuin

    What I am looking for is a way of printing encryption info of each packet.

    


    With encrypted streams, AVPacket has a side_data of 'AV_PKT_DATA_ENCRYPTION_INFO (25)' type. There is the 'av_encryption_info_get_side_data' function that takes this data and returns AVEncryptionInfo, that struct (amongst other important info) includes a sequence of sizes that will tell you which parts of the AVPacket are encrypted.

    


    Ideally I think there probably is a nice elegant way of getting ffmpeg to print AVEncryptionInfo of each packet (like with trace_headers). It is possible to write my own function but my spidey senses tell me this might already exist as a ffmpeg option. I must admit at the moment I am using a debugger with a player and counting hex bytes of the side_data with info from the above function. I've done this too many times now for my liking !