Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (70)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8749)

  • How to convert raw H.264 in Annex B format to AVCC using FFMPEG command line

    31 juillet 2020, par Glauco

    Hi was trying to find the command line parameters to pass into FFMPEG to convert raw H.264 file in ANNEX B format to AVCC format but I can't find anything on the internet. I only found the reverse (AVCC to ANNEX B). So I'm asking here
Thanks

    


  • How to write multi-line batch command that has some lines that start with hyphen '"-"

    21 juin 2020, par slyfox1186

    I am encountering errors when running a long command that I spread out over multiple lines in my batch script. Some of the lines start with a hyphen (-) and if I make the command one line it works fine but multi-lined not working.

    


    example.

    


    for %%G in (*.jpg) do (
"%%G" convert ^
-resize 128x128 ^
-ect... ^
-ect... ^
"%%~nG_new.jpg"
)


    


    ImageMagick throws erros as does FFmpeg using this method but working find in a single line command.

    


  • I have a mistake in my one-line ffmpeg command

    8 mai 2020, par Pourya98

    I want to put 2 watermarks on a video :

    



    for %%i in (*.mp4) do ffmpeg -i "%%i" -i big.jpg -i all.png -filter_complex "overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2:enable='between(t,0,1)' ; overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2" "output\%%~na.mp4"


    



    But I receive an error :

    



    Cannot find a matching stream for unlabeled input pad 1 on filter Parsed_overlay_1


    



    What's wrong ?