Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (53)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (9371)

  • FFMPEG Slow Video and Audio by Half

    12 septembre 2021, par nomaam

    I am using the latest version of FFMPEG and am trying to slow video and audio by half

    


    This is the best I could come up with

    


    ./ffmpeg.exe -i "C:/ffmpeg/input.mp4" -filter_complex "[0:v]setpts=1.5*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" "C://ffmpeg/output.mp4"


    


    But the audio and video are not being slowed down at the same rate.

    


    Any suggestions ?

    


    Thanks.

    


  • Cut every .mp4 in folder by half with ffmpeg

    14 novembre 2022, par c00kieRaptor

    I have a folder with 200 mp4-files and I need to cut the last half of every one of them. So if a video is 140 seconds I need to cut out the last 70 seconds so that the resulting output is the preceding 70 seconds.

    


    I would assume the loop would look a bit like this :

    


    for i in *.mp4; do
    let A=$(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 $i)
    let A=${A%.*}
    let A=$A/2
    ffmpeg -sseof $A -i $i ${i%.mp4}
done


    


    But I get "syntax error : invalid arithmetic operator (error token is ".246848")" from the first 'let'. This corresponds to the float of the video duration.
For all I know there could be many other mistakes with my loop

    


    Also some files have spaces and special characters if that matters.

    


  • msmpeg4 : Split encoding backend code off from general backend code.

    18 février 2012, par Diego Biurrun

    msmpeg4 : Split encoding backend code off from general backend code.