Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8016)

  • Merge audio and video RTP data into mp4 file

    4 juillet 2015, par Kaidul Islam

    I am receiving audio and video RTP data through socket connection. Now I want to merge the video and audio RTP data into MP4 file. How can I achieve this ? Do I need to save the video RTP into h264 and audio RTP into PCMU separately and later merge these into MP4 file ? Or is it possible to merge audio-video RTP into MP4 file directly ?

    Thanks in advance !

  • .bat script : loop over files and save command to variable

    29 septembre 2020, par Rolf vd H

    Gooddday,

    


    I want to shorten a folder of movies to cut the last part of it. To do that I use ffmpeg & ffprobe.
The time to be cut off is 5.52 seconds.
If I want to do that, first I have to get the time of the movie and then (the second command in the loop), I have to subtract the 5.52 seconds.

    


    For now I have the following but I can't get it right :

    


    mkdir outputsss
for %%a in ("FOLDER\*.mp4") do (
 ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "FOLDER\%%~na.mp4"
 ffmpeg -i "FOLDER\%%~na.mp4" -t 18.6 -c copy output.mp4
)
pause


    


    In the above code example the "ffprobe" calculates the time of the movie.
The "ffmpeg" renders the movie again for 18.6 seconds. But the time should be calculated by subtract 5.52 seconds from the "ffprobe" result.

    


    Can anyone help me please on how to do this ?

    


  • ffmpeg - Streaming rtsp data to local mp4 file

    15 juillet 2017, par Pankhuri Agarwal

    How can I save live streaming data from a local camera transported by rtsp to my local memory in a .mp4 format.

    I am using Ubuntu 16.04 LTS and tried using ffmpeg 3.3 but nothing seemed to work properly.

    The goal will be to provide live feed by mp4 by html5 and perform some modification on mp4 data.

    Can anyone suggest how to make ffmpeg work or any other way ?