Recherche avancée

Médias (91)

Autres articles (45)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7708)

  • Converter stream do Icecast2 para m3u8 com ffmpeg

    14 avril 2020, par Thiago Lima

    Opa, beleza ?

    &#xA;&#xA;

    É possível converter um live stream do Icecast2 para o formato .m3u8 usando o ffmpeg ? Estou tentando converter o endereço https://live.hunter.fm/rock_normal (AAC).

    &#xA;&#xA;

    Obrigado

    &#xA;

  • python : can't open file 'F :\\Episode Split\\Episode' : [Errno 2] No such file or directory [closed]

    26 février 2024, par Rafa Segovia

    everyone !

    &#xA;

    I'm trying to write a python script to split a video into parts based on a list of expressions from a docx file, comparing them to the dialogue on an srt file.&#xA;I think I have everything installed on my Windows 10 pc.&#xA;I keep getting this error.

    &#xA;

    python : can't open file 'F :\Episode Split\Episode' : [Errno 2] No such file or directory

    &#xA;

    It's like it detects a space somewhere and stops reading a path.&#xA;There's no file called "Episode" anywhere mentioned on the script.&#xA;Can you take a look at the script and pinpoint how I can fix this error ?

    &#xA;

    Thank you

    &#xA;

    import os&#xA;import re&#xA;import cv2&#xA;import unicodedata&#xA;import chardet&#xA;from fuzzywuzzy import fuzz&#xA;import docx&#xA;from bs4 import BeautifulSoup&#xA;import xml.etree.ElementTree as ET&#xA;&#xA;# Define variables&#xA;expressions_per_cut = 4&#xA;max_time_per_cut_seconds = 20&#xA;fuzzy_ratio = 60&#xA;input_parent_folder = r&#x27;F:\Episode Split&#x27;&#xA;xml_output_folder = r&#x27;F:\Episode Split&#x27;&#xA;&#xA;

    &#xA;

    I tried removing spaces in the paths by using hyphens among other things.

    &#xA;

  • FFMPEG : Obtain the system time corresponding to each frame present in a video

    18 mai 2022, par User

    I am currently recording the screen using the below command on Windows 10 system,

    &#xA;&#xA;

    ffmpeg.exe -loglevel quiet -f gdigrab -framerate 30 -i desktop -vf mpdecimate,setpts=N/FRAME_RATE/TB -vcodec libx264 -pix_fmt yuv420p -preset slow -crf 0 -threads 0 nodups.mkv&#xA;

    &#xA;&#xA;

    If I record a video for 5 mins, where 4 minutes out of it is idle. The final video obtained is only 1 minute. I want to know the system time corresponding to a specific frame from this 1 minute video. &#xA;I tried making use of the command to obtain the frame information from this 1 minute video for 40th frame like : ffmpeg -i nodups.mkv -vf select=&#x27;eq(n,40)&#x27;,showinfo -f null -&#xA;This outputs me

    &#xA;&#xA;

    [Parsed_showinfo_1 @ 000002455fce5dc0] n:   0 pts:   1333 pts_time:1.333   pos:   158601 fmt:yuv420p sar:0/1 s:1600x900 i:P iskey:0 type:P checksum:885ECCE2 plane_checksum:[7D89AD8E DC745BDC 0E23C369] mean:[158 128 128] stdev:[101.7 4.5 4.0&#xA;

    &#xA;&#xA;

    Is there a way to obtain the system time when this frame was captured using FFMPEG ? Any inputs will help.

    &#xA;