Recherche avancée

Médias (91)

Autres articles (50)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

  • How can you get a webm file without headers to play video and audio ?

    31 août 2023, par John

    Right now I have webm files that are missing the header information so they don't play. How can I fix them so that they play ? My only hack is to get a small webm file with header information and prepend the file, then encode to mp4 and mp3.

    


    ffmpeg -i input.webm output.mp4
[matroska,webm @ 0x13481be00] Format matroska,webm detected only with low score of 1, misdetection possible!
[matroska,webm @ 0x13481be00] EBML header parsing failed
kyle.webm: Invalid data found when processing input


    


    Example file : https://drive.google.com/file/d/1j21wxHyQimMorWU99MJx—4YhgSimkp7/view?usp=share_link

    


  • FFMPEG command runs but youtube livestream is not displayed [closed]

    21 septembre 2023, par Ngọc Hoa Dương

    I have a video on google drive and I use the ffmpeg command to livestream it on youtube
    
ffmpeg.exe -stream_loop -1 -re -i "https://drive.google.com/uc?export=preview&id=1rfKpTYrV62FnuZsfeWc96zt3Xl6NhZ0v" -vcodec copy -acodec copy -g 1 -f flv -flvflags no_duration_filesize rtmp://a.rtmp.youtube.com/live2/KEY
    
The command run good

    


    enter image description here
    
, but no livestream show in youtube
    
enter image description here

    


  • Rotation Video Overlay Over Image producing some weird output with the FFMPEG KIT for android by arthenica / ffmpeg-kit

    25 octobre 2023, par Yash Kalariya

    I want to overlay some video on the image frame and rotate it and output it as the resultant video. However the command is running successfully but it is producing some weird output video with both the top and bottom portion with black layer, but however the rotation of the video over the image is successful but the top and bottom portion are getting black.

    


    Here is my command that i have used with the ffmpeg kit for android by arthenica/ffmpeg-kit.

    


    "-i " +inputImage+" -i "+inputVideo+" -filter_complex [1:v]format=rgba,rotate="+(float) Math.toDegrees(Double.parseDouble("-1.1073"))+"*(PI/180)[a] ;[0:v][a]overlay=252:103 "+ "-threads 5 -preset veryslow -q:v 3 "+resultVideo

    


    "-i /data/user/0/com.codemenschen.lmsapp/files/images/1698225617748.jpeg -i /data/user/0/com.codemenschen.lmsapp/files/videos/Lmwy1698225601507.mp4 -filter_complex [1:v]format=rgba,rotate=-63.443615*(PI/180)[a] ;[0:v][a]overlay=252:103 -threads 5 -preset veryslow -q:v 3 /data/user/0/com.codemenschen.lmsapp/files/videos/Lmwy1698225618149.mp4"

    


    Here is the link to the Image frame :
https://drive.google.com/file/d/1G6R7_E5prAE6QBRipKIgA7G6Imjy_KM3/view?usp=sharing

    


    Here is the link to the Overlay Video : https://drive.google.com/file/d/1sYWt1Whu5TqaxSMHc6zpgGedEBaWuRqP/view?usp=sharing

    


    Here is the link to the Output Video : https://drive.google.com/file/d/1cQ2G77bVqFc6e1vZJBXo0MHw7TyBiiVN/view?usp=sharing

    


    Can someone help me with this ?

    


    Here is the command that i have tried and its working but producing weird outputs with black portion :

    


    "-i /data/user/0/com.codemenschen.lmsapp/files/images/1698225617748.jpeg -i /data/user/0/com.codemenschen.lmsapp/files/videos/Lmwy1698225601507.mp4 -filter_complex [1:v]format=rgba,rotate=-63.443615*(PI/180)[a] ;[0:v][a]overlay=252:103 -threads 5 -preset veryslow -q:v 3 /data/user/0/com.codemenschen.lmsapp/files/videos/Lmwy1698225618149.mp4"