Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (81)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5958)

  • How to convert video from mov to mp4 video format through FFMPEG integration in android [closed]

    28 septembre 2012, par Sanat Pandey

    I have a problem that I received a video file from the server which can not be played throgh video view from the app I am making. I don't know what the actaul problem is because all videos are played through same video view but the video received from the server side is not played. So, I think that I have to integrate FFMPEG in our android app, so I can play every video at a runtime conversion. For this I have read much more about FFMPEG Library integration with android through many sites as :

    http://www.roman10.net/how-to-build-android-applications-based-on-ffmpeg-by-an-example/
    Downloaded some projects from GitHUb (https://github.com/appunite/AndroidFFmpeg) but unable to succeed for building the Library through NDK. Some thing I missed and I am working on Windows machine, probably this might be a problem. I want the exact solution regarding this, means step by step solution for building the android project with FFMPEG Library. If you have some useful suggestion then please share with me.

    Thanks in advance.

  • Render video till video duration with filters

    30 juin 2021, par Konduri Sai Aditya

    In the below example, I need to render video with video time duration(i.e mp4)But this causes video execution to an infinite loop.

    


    ffmpeg -i v.mp4 -stream_loop -1  -i w.webm   -vcodec libvpx-vp9 -filter_complex overlay  -y output.mp4


    


    It should also work with vice versa

    


     ffmpeg  -stream_loop -1  -i w.webm   -vcodec libvpx-vp9 -i v.mp4 -filter_complex overlay  -y output.mp4


    


    For the above command, the output video should be rendered till mp4 time duration.

    


    Please help me.

    


  • How to loop and combine video and audio streams of random length into one video file with ffmpeg ?

    8 janvier 2019, par Arkadiy Bolotov

    I have a video file (let’s say 5-10 seconds) and a audio file (5-300 seconds). I would like to loop and merge them into a resulting video of known length (let’s say 50-60 seconds). How would I do that in ffmpeg ?