Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (38)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6265)

  • lavf : Implement ff_brktimegm using gmtime_r

    24 octobre 2014, par Martin Storsjö
    lavf : Implement ff_brktimegm using gmtime_r
    

    While a standalone implementation is nice, we already depend on
    gmtime and gmtime_r in a number of places.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/cutils.c
  • How to loop thorough my text file and call the name of picture

    17 août 2022, par Ionut Bejinariu

    I need to take all audio files from a directory, and export them along with one of multiple pictures listed in a text file.

    &#xA;

    It's working to take all the audio files one by one, but I cannot make it have a different picture for each video. I have same picture all the time.

    &#xA;

      &#xA;
    1. I don't know how to make the loop working for the pictures files.
    2. &#xA;

    3. Will be nice if someone can tell me how I can group pictures in order to export as a slideshow.
    4. &#xA;

    &#xA;

    Thank you.

    &#xA;

    In .txt file my pictures are like this :

    &#xA;

    1.jpg&#xA;2.jpg&#xA;3.jpg&#xA;

    &#xA;

    And my code looks like this :

    &#xA;

    @echo off&#xA;set "sourcedir=E:\test slideshow imagini"  &#xA;set "outputdir=E:\test slideshow imagini\1" &#xA;PUSHD "%sourcedir%"&#xA;for /F "tokens=*" %%A in (poze3.txt) do (&#xA;    echo %%A&#xA;    :: pictures names&#xA;     for %%F in (*.wav *.mp3) DO ffmpeg -loop 1 -i %%A -i "%%F" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest -vf scale=1920:1080 "%outputdir%\%%F.mp4" &#xA;    POPD&#xA;)&#xA;

    &#xA;

  • How to loop through my text file and call the name of picture

    18 août 2022, par Ionut Bejinariu

    I need to take all audio files from a directory, and export them along with one of multiple pictures listed in a text file.

    &#xA;

    It's working to take all the audio files one by one, but I cannot make it have a different picture for each video. I have same picture all the time.

    &#xA;

      &#xA;
    1. I don't know how to make the loop working for the pictures files.
    2. &#xA;

    3. Will be nice if someone can tell me how I can group pictures in order to export as a slideshow.
    4. &#xA;

    &#xA;

    Thank you.

    &#xA;

    In .txt file my pictures are like this :

    &#xA;

    1.jpg&#xA;2.jpg&#xA;3.jpg&#xA;

    &#xA;

    And my code looks like this :

    &#xA;

    @echo off&#xA;set "sourcedir=E:\test slideshow imagini"  &#xA;set "outputdir=E:\test slideshow imagini\1" &#xA;PUSHD "%sourcedir%"&#xA;for /F "tokens=*" %%A in (poze3.txt) do (&#xA;    echo %%A&#xA;    :: pictures names&#xA;     for %%F in (*.wav *.mp3) DO ffmpeg -loop 1 -i %%A -i "%%F" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest -vf scale=1920:1080 "%outputdir%\%%F.mp4" &#xA;    POPD&#xA;)&#xA;

    &#xA;