Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (68)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (12546)

  • Is there a way to convert files from YUV 4:2:0 to MP4 losslessly using ffmpeg on Mac ?

    14 février 2021, par Enrique Perez

    I'm currently working on some image compression research, but I've been having trouble decoding the video for MATLAB. The original files are in *.mkv format from this website : https://console.cloud.google.com/storage/browser/ugc-dataset/original_videos.

    


    At first I tried using a simple copy command like the following :

    


    ffmpeg -i original_videos_LiveMusic_360P_LiveMusic_360P-3be0.mkv -c:v copy original_videos_LiveMusic_360P_LiveMusic_360P-3be0.mp4


    


    With that, I got the following error :

    


    


    [mp4 @ 0x7f932a808200] Could not find tag for codec rawvideo in stream #0, codec not currently supported in container
Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument

    


    


    I was able to convert the files to *.avi, but unfortunately these are not readable by MATLAB on Mac OS. I need the video conversion to be lossless, so I can't figure it out. The video codec is YUV 4:2:0.

    


    Thank you for your help, it is greatly appreciated.

    


  • How to scale video in front of image using ffmpeg ? [closed]

    29 juillet 2022, par Nigrimmist

    What i have :

    


    png picture dem.png (not transparent) and video cat.mp4

    


    Current result :

    


    enter image description here

    


    by executing :

    


    ffmpeg -i cat.mp4 -framerate 30 -i dem.png -filter_complex "[1][0]overlay=x=100:y=100" -c:a copy -movflags +faststart out2.mp4


    


    How can i scale mp4 in case i know paddings/required height/width of scaled mp4 here ?

    


    Very beginner in ffmpeg. I know, i need to use scale param, but can't understand how to do it with my current ffmpeg command.

    


    Maybe someone know how to do it ?

    


    Files are here if you need : https://drive.google.com/drive/folders/1gKJCyVU0IgJ8g3zWFhCA-L93lDOWyOS-?usp=sharing

    


  • How to change python runtime in firebase functions

    1er août 2023, par MrBom

    I currently have python311, but it seems that it doesnt include ffmpeg. So I'm looking for ways to either change to python39 or figure out how to install and use ffmpeg.

    


    When I try

    


    import subprocess
print(subprocess.run(shlex.split("ffmpeg -version")))


    


    inside a firebase function, all I get is FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'
I've tried a few different places like /opt/bin/ffmpeg or ffmpeg/ffmpeg since I have have ffmpeg inside the folder functions, but it always the same error.

    


    Recommendation to use python39 for ffmpeg

    


    Edit : Things I found but couldnt get it to work :

    


    gcloud functions deploy <my function="function"> --runtime python39</my>

    &#xA;

    Made this from gcloud

    &#xA;