Recherche avancée

Médias (91)

Autres articles (56)

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

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

Sur d’autres sites (5513)

  • mmaldec : hack against buffering problems on broken input

    11 août 2015, par wm4
    mmaldec : hack against buffering problems on broken input
    

    I can’t come up with a nice way to handle this. It’s hard to keep the
    lock-stepped input/output in this case. You can’t predict whether the
    MMAL decoder will output a picture (because it’s asynchronous), so
    you have to assume in general that any packet could produce 0 or 1
    frames. You can’t continue to write input packets to the decoder,
    because then you might get too many output frames, which you can’t
    get rid of because the lavc decoding API does not allow the decoder
    to return an output frame without consuming an input frame (except
    when flushing).

    The ideal fix is a M:N decoding API (preferably asynchronous), which
    would make this code potentially much cleaner. For now, this hack
    will do.

    • [DH] libavcodec/mmaldec.c
  • Split and Concat video clip using ffmpeg

    24 mai 2017, par user2749679

    I am using ffmpeg to split and Concat a vidoe clip by doing following :

    F:\Temp_Project\ffmpeg\ffmpeg -ss 00:00:00 -t 00:00:20 -i F:\Temp_Project\ffmpeg\input.avi -ss 00:00:20 -t 00:00:48 -i F:\Temp_Project\ffmpeg\input.avi -filter_complex "[0][1]concat=n=2:v=1" -y F:\Temp_Project\ffmpeg\output.avi

    Now i want to do this without using filter complex as this filter take much time to produce a result.

    I found one way to perform the above task using two step operation :
    Split and save parts to hard disk
    concat saved parts.

    Sample code :

    F:\Temp_Project\ffmpeg\ffmpeg -i "F:\Temp_Project\ffmpeg\input.avi" -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:20 -y F:\Temp_Project\ffmpeg\1.avi -vcodec copy -acodec copy -ss 00:00:20 -t 00:00:48 -y F:\Temp_Project\ffmpeg\2.avi

    F:\Temp_Project\ffmpeg\ffmpeg -i "concat:F:\Temp_Project\ffmpeg\1.avi|F:\Temp_Project\ffmpeg\2.avi" -c copy -y F:\Temp_Project\ffmpeg\output.avi

    How can i marge above two commands in a single lines that is split and concat video clip without saving intermediate files and without using filter_complex.

  • Split and marge clip using ffmpeg

    24 mai 2017, par user2749679

    I am using ffmpeg to split and marge a vidoe clip by doing following :

    F:\Temp_Project\ffmpeg\ffmpeg -ss 00:00:00 -t 00:00:20 -i F:\Temp_Project\ffmpeg\input.avi -ss 00:00:20 -t 00:00:48 -i F:\Temp_Project\ffmpeg\input.avi -filter_complex "[0][1]concat=n=2:v=1" -y F:\Temp_Project\ffmpeg\output.avi

    Now i want to do this without using filter complex as this filter take much time to produce a result.

    I found one way to perform the above task using two step operation :
    Split and save parts to hard disk
    concat saved parts.

    Sample code :

    F:\Temp_Project\ffmpeg\ffmpeg -i "F:\Temp_Project\ffmpeg\input.avi" -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:20 -y F:\Temp_Project\ffmpeg\1.avi -vcodec copy -acodec copy -ss 00:00:20 -t 00:00:48 -y F:\Temp_Project\ffmpeg\2.avi

    F:\Temp_Project\ffmpeg\ffmpeg -i "concat:F:\Temp_Project\ffmpeg\1.avi|F:\Temp_Project\ffmpeg\2.avi" -c copy -y F:\Temp_Project\ffmpeg\output.avi

    How can i marge above two commands in a single lines that is split and marge video clip without saving intermediate files and without using filter_complex.