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.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (13204)

  • RTMP AVPacket from NAL Units iOS

    5 novembre 2014, par Mihai Ghete

    I’m writing video frames to a file (for hardware acceleration H264 encoding purpose) and reading the data from there while the writing is still happening. Long story short, I get the NALUs for every frame. My question is how to pass the NALUs to the AVPacket (FFmpeg’s AVPacket) data parameter in order to send it over the network using the RTMP protocol.

    What I do is append every NALU (on iOS, every frame is composed of 1 or two NALUs) and set it to the AVPacket data parameter, but it doesn’t seem to work. Ideas ? thanks.

    I use this method to set the packet data : H264 Video Streaming over RTMP on iOS

  • Using ffmpeg in Powershell

    27 avril 2016, par Matthew Goode

    Can’t find much information on this, as I believe it’s a pretty noobish problem and there aren’t really any tutorials on it. Can anyone explain how I can use ffmpeg in a powershell script ? I downloaded ffmpeg and I have the path to ffmpeg.exe. Shouldn’t I be able to do something like this ?

    "C:\path\ffmpeg.exe" -i stuff.mp3 stuff.wav

    It returns an error message along the lines of -i not being a recognized parameter. Am I missing something pretty basic here ? Thanks for any help. I’m trying to convert some audio files between .wav, .mp3. and .flac, and if anyone has any better suggestions than ffmpeg then please let me know.

  • ffmpeg split | merge video voice not sync

    2 août 2022, par Zhang

    there are what i done :

    


      

    1. download a full mp4 file.
    2. 


    3. due to it's watermark(0s-10s), i split the full video into 2 parts from 10second. the first part with watermark.
    4. 


    5. use ffmpeg delogo the first part.
    6. 


    7. merge the two video into a full again.
    8. 


    


    

    wget -O download.mp4
ffmpeg -i download.mp4 -vcodec copy -acodec copy -t 00:00:10 tmp1.mp4
ffmpeg -i download.mp4 -vcodec copy -acodec copy -ss 00:00:10 tmp2.mp4
ffmpeg -i tmp1.mp4 -vf "delogo=x=432:y=44:w=1060:h=108" -c:a copy tmp3.mp4
echo file tmp3.mp4 > mergelist.txt && echo file tmp2.mp4 >> mergelist.txt
ffmpeg -f concat -i mergelist.txt -c copy output.mp4


    


    


    problem i faced :
in the last merged video, only one tmp part is fine, the other's video and voice not sync and play time more faster than before.

    


    why i divide it, delogo(although only the first 10 seconds shows) full video more than 1h, re-encode takes much time, 10s part fine to me.