Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (31)

  • 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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6873)

  • Use FFMPEG to recover video from Ransomware

    12 mars 2021, par ParthShah

    Based on googling various articles, what I understood that the ransomwares generally encrypt initial and may be last 150 kb or so for a large files. Hence, video information of codec etc goes missing due to that but the most of the video is still available intact.
Hence, If I take a good video with same parameters of bitrate, resolution, audio codec and video codec etc, and specify this details to FFMPEG to add these details to the corrupted video, it should solve the problem. There are some programs available on the internet which does exactly the same but with paid version.
I guess FFMPEG also can do this if properly used. Anyone can help in this ?

    


  • Issue with yt-dlp and FFMPEG Converting Webm to MP4 for 360 video : Unsupported channel layout "ambisonic 1"

    22 janvier 2024, par William L W L

    I am trying to convert .webm files to mp4. These are 360 videos that have been downloaded using yt-dlp.

    


    I have been using this command successfully, but it does not work on an M2 macbook pro. It works fine on PC.

    


    ffmpeg -y -i "/Users/x/Movies/Tropical_Rainforest_360.webm" -c:v libx265 -preset fast -crf 21 -vf "scale=4096x4096:out_range=full" -pix_fmt yuvj420p -aspect 1:1 -movflags faststart "/Users/x/Movies/Tropical_Rainforest_360.mp4"


    


    The error messages are as follows :

    


    [aac @ 0x12ae1fea0] Unsupported channel layout "ambisonic 1"
[aac @ 0x12ae1fea0] Qavg: nan
[aost#0:1/aac @ 0x12ae1fc30] Error while opening encoder - maybe incorrect parameters such as bit_rate, rate, width or height.
Error while filtering: Invalid argument
[swscaler @ 0x110dd0000] deprecated pixel format used, make sure you did set range correctly
[swscaler @ 0x120158000] deprecated pixel format used, make sure you did set range correctly
[swscaler @ 0x130208000] deprecated pixel format used, make sure you did set range correctly
    Last message repeated 1 times
[out#0/mp4 @ 0x600003f8c480] Nothing was written into output file, because at least one of its streams received no packets.
frame=    0 fps=0.0 q=0.0 Lsize=       0kB time=N/A bitrate=N/A speed=N/A    
Conversion failed!



    


    Context : I work in an educational setting which caters for vulnearble pupils. We cannot use Youtube in real time, this is mainly due to adverts or suggested videos that may trigger our pupils. Some children have mental health issues. Some children have also not been outdoors for several months/years due to medical conditions. We use 360 videos and VR to help bring the outside world inside, The YoutubeVR app is not an option since there is no way to install adblockers.

    


    The same script above works fine on a PC virtual machine which I can remote into from my Mac.

    


  • (WinError 2) combining video (.mp4) and audio (.mp4) using Python ffmpeg

    28 mai 2021, par Leon

    I'm new to using ffmpeg, and I'm trying to use ffmpeg to combine an audio only (.mp4 format) and a video only (also .mp4 format)

    


    I've tried reinstall FFmpeg, ffmpeg, and ffmpeg-python :

    


    import ffmpeg

def main():
    video_stream = ffmpeg.input('Video.mp4')
    audio_stream = ffmpeg.input('Audio.mp4')
    ffmpeg.output(audio_stream, video_stream, 'result.mp4').run()


if __name__ == "__main__":
    main() 


    


    It returns me this error :

    


    Traceback (most recent call last):&#xA;  File "C:\Users\leon\Downloads\Youtube_Project\Youtube_Combine.py", line 15, in <module>&#xA;    main()&#xA;  File "C:\Users\leon\Downloads\Youtube_Project\Youtube_Combine.py", line 11, in main&#xA;    ffmpeg.output(audio_stream, video_stream, &#x27;result.mp4&#x27;).run()&#xA;  File "C:\Users\leon\Downloads\Youtube_Project\venv\Downloads\lib\site-packages\ffmpeg\_run.py", line 313, in run&#xA;    process = run_async(&#xA;  File "C:\Users\leon\Downloads\Youtube_Project\venv\Downloads\lib\site-packages\ffmpeg\_run.py", line 284, in run_async&#xA;    return subprocess.Popen(&#xA;  File "C:\Users\leon\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__&#xA;    self._execute_child(args, executable, preexec_fn, close_fds,&#xA;  File "C:\Users\leon\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child&#xA;    hp, ht, pid, tid = _winapi.CreateProcess(executable, args,&#xA;FileNotFoundError: [WinError 2] The system cannot find the file specified&#xA;</module>

    &#xA;