Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (81)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (8725)

  • FFMPEG map 7.1 surround to 5.1 during transcode

    12 décembre 2022, par dongle

    I have a ProRes MOV whose audio contains 8 channels of audio in a 7.1 surround layout (L R C LFE Ls Rs Lt RT).

    


    I am preparing an H.264 MP4 for a media player that only supports AAC, and does not support 7.1, so I would like to map to 5.1, dropping ther 7th and 8th channels (Lt and Rt). Under normal circumstances I would just use the below for my transcode :

    


    ffmpeg -i input_file -c:v libx264 -pix_fmt yuv420p -preset veryslow -crf 18 -c:a aac output_file

    


    I've been looking at the documentation for audio layout manipulation, but am having trouble wrapping my head around it and they don't have a specific example of what I'm trying to do.

    


    Do I need to export my audio to a WAV file first, or is there a way to manage the mapping in my transcode command ? How can I map the existing first 6 channels to the new file ?

    


  • Streaming with ffmpeg

    15 juillet 2014, par jakebird451

    I am using ffmpeg to encode a video from a non-mp4 format to an mp4 format. My goal is to provide the video while its encoding to the client (http link). The link is provided with cherrpypy using python. To perform the encoding, I use the subprocess.Popen command and redirect the output to a pipe. Providing the file live to a browser is fine, however finding how to encode the video though ffmpeg to get my desired result is not going so well.

    The only command I found so far that even works is : ffmpeg -i {inputfile} -nostats -frag_duration 3600 -f mp4 -. This command "works", the audio is flawless however the video is encoded to what looks like 4x (or 2x) the speed of the original video. So I have been experimenting with commands to see if I can fix the video defect but so far I have yet to fix the same problem. I have been attempting to inject the -vcodec libx264 command, still the same problem.

    To assist in troubleshooting my problem, I decided to also save the stream to a file. Playing the recorded file yields the same effect. However, interestingly enough, playing the video though VLC and Windows Media Player fixes the video problem and the video plays perfectly fine. Sound and all. It just seems as though the html5 player (with Google Chrome) does not like however I am packing the video. It seems as thought Google Chrome and my encoded file do not play well together.

    Continuing with the streaming issue, breaking the encoding process still shows the video encoding just fine in VLC and in Windows Media Player. Well, it plays the video just fine up to until I pressed ctrl-c of course. So it seems that maybe it is not the encoding that is the problem, but either :

    1. It is a problem with the header for the generated mp4 file
    2. Google Chome is disregarding the frame rate specified in the file and mandating, say, 60 fps or even 120 ? (which would cause the fast forwarding effect)

    The webpage that I am using to show the video is dynamically created and is formed using the template below :

       
           
       
       
           <video controls="controls">
               <source src="{link}"></source>
               Your browser sux. Fix it.
           </video>
       

    The {title} and {link} components are substituted with the corresponding components. If anyone has any suggestions on how to troubleshoot this problem I would be more than willing to listen. As of right now, I am stuck on how to progress with the current state of this issue.

  • How to burn colorful subtitle into video using ffmpeg ?

    17 juin 2014, par qliq

    I want to burn an srt file into a mp4 video. To make the subtitles perfectly visible, I want the subtitle text to be yellow on a brownish semi-transparent background.

    I know that there are some GUI tools like Arista Transcoder but it does not allow color manipulation. I also know that ffmpeg make these manipulations possible but the gazillion flags on the docs are over the top of my head.

    So I appreciate a ready made ffmpeg command to do so.